mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
16be897441
* class html_component does not exist any more * class html_table rendered via html_writer::table() * html_table, html_table_row and html_table_cell have public $attributes property to set their CSS classes * dropped rotateheaders feature, should be added again after more research of possible ways (<svg> is not nice IMHO) * dropped possibility to define CSS classes for table heading, body and footer - can be easily done and better done using just table class and context
111 lines
3.4 KiB
PHP
111 lines
3.4 KiB
PHP
<?PHP
|
|
|
|
/// This page lists all the instances of wiki in a particular course
|
|
/// Replace wiki with the name of your module
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
$id = required_param('id', PARAM_INT); // course
|
|
|
|
$PAGE->set_url('/mod/wiki/index.php', array('id'=>$id));
|
|
|
|
if (!$course = $DB->get_record('course', array('id'=>$id))) {
|
|
print_error('invalidcourseid');
|
|
}
|
|
|
|
require_course_login($course);
|
|
$PAGE->set_pagelayout('incourse');
|
|
|
|
add_to_log($course->id, "wiki", "view all", "index.php?id=$course->id", "");
|
|
|
|
|
|
/// Get all required strings
|
|
|
|
$strwikis = get_string("modulenameplural", "wiki");
|
|
$strwiki = get_string("modulename", "wiki");
|
|
|
|
|
|
/// Print the header
|
|
$PAGE->navbar->add($strwikis);
|
|
$PAGE->set_title($strwikis);
|
|
echo $OUTPUT->header();
|
|
|
|
/// Get all the appropriate data
|
|
|
|
if (! $wikis = get_all_instances_in_course("wiki", $course)) {
|
|
notice(get_string('thereareno', 'moodle', $strwikis), "../../course/view.php?id=$course->id");
|
|
die;
|
|
}
|
|
|
|
/// Print the list of instances (your module will probably extend this)
|
|
|
|
$timenow = time();
|
|
$strname = get_string('wikiname', 'wiki');
|
|
$strsummary = get_string('summary');
|
|
$strtype = get_string('wikitype', 'wiki');
|
|
$strlastmodified = get_string('lastmodified');
|
|
$strweek = get_string('week');
|
|
$strtopic = get_string('topic');
|
|
|
|
$table = new html_table();
|
|
if ($course->format == "weeks") {
|
|
$table->head = array ($strweek, $strname, $strsummary, $strtype, $strlastmodified);
|
|
$table->align = array ('CENTER', 'LEFT', 'LEFT', 'LEFT', 'LEFT');
|
|
} else if ($course->format == "topics") {
|
|
$table->head = array ($strtopic, $strname, $strsummary, $strtype, $strlastmodified);
|
|
$table->align = array ('CENTER', 'LEFT', 'LEFT', 'LEFT', 'LEFT');
|
|
} else {
|
|
$table->head = array ($strname, $strsummary, $strtype, $strlastmodified);
|
|
$table->align = array ('LEFT', 'LEFT', 'LEFT', 'LEFT');
|
|
}
|
|
|
|
foreach ($wikis as $wiki) {
|
|
if (!$wiki->visible) {
|
|
//Show dimmed if the mod is hidden
|
|
$link = '<a class="dimmed" href="view.php?id='.$wiki->coursemodule.'">'.format_string($wiki->name,true).'</a>';
|
|
} else {
|
|
//Show normal if the mod is visible
|
|
$link = '<a href="view.php?id='.$wiki->coursemodule.'">'.format_string($wiki->name,true).'</a>';
|
|
}
|
|
|
|
$timmod = '<span class="smallinfo">'.userdate($wiki->timemodified).'</span>';
|
|
$options = (object)array('noclean'=>true);
|
|
$summary = '<div class="smallinfo">'.format_module_intro('wiki', $wiki, $wiki->coursemodule).'</div>';
|
|
|
|
$site = get_site();
|
|
switch ($wiki->wtype) {
|
|
|
|
case 'teacher':
|
|
$wtype = get_string('defaultcoursestudent');
|
|
break;
|
|
|
|
case 'student':
|
|
$wtype = get_string('defaultcoursestudent');
|
|
break;
|
|
|
|
case 'group':
|
|
default:
|
|
$wtype = get_string('group');
|
|
break;
|
|
}
|
|
|
|
$wtype = '<span class="smallinfo">'.$wtype.'</span>';
|
|
|
|
if ($course->format == "weeks" or $course->format == "topics") {
|
|
$table->data[] = array ($wiki->section, $link, $summary, $wtype, $timmod);
|
|
} else {
|
|
$table->data[] = array ($link, $summary, $wtype, $timmod);
|
|
}
|
|
}
|
|
|
|
echo "<br />";
|
|
|
|
echo html_writer::table($table);
|
|
|
|
/// Finish the page
|
|
|
|
echo $OUTPUT->footer();
|
|
|
|
|