.
/**
* This page lists all the instances of wiki in a particular course
*
* @package mod-wiki-2.0
* @copyrigth 2009 Marc Alier, Jordi Piguillem marc.alier@upc.edu
* @copyrigth 2009 Universitat Politecnica de Catalunya http://www.upc.edu
*
* @author Jordi Piguillem
* @author Marc Alier
* @author David Jimenez
* @author Josep Arus
* @author Kenneth Riba
*
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
require_once('../../config.php');
require_once('lib.php');
$id = required_param('id', PARAM_INT); // course
if (!$course = $DB->get_record('course', array('id' => $id))) {
print_error('invalidcourseid');
}
require_course_login($course->id, true, $cm);
add_to_log($course->id, 'wiki', 'view all', "index.php?id=$course->id", "");
/// Get all required stringswiki
$strwikis = get_string("modulenameplural", "wiki");
$strwiki = get_string("modulename", "wiki");
/// Print the header
$navlinks = array();
$navlinks[] = array('name' => $strwikis, 'link' => '', 'type' => 'activity');
$navigation = build_navigation($navlinks);
print_header_simple("$strwikis", "", $navigation, "", "", true, "", navmenu($course));
/// Get all the appropriate data
if (!$wikis = get_all_instances_in_course("wiki", $course)) {
notice("There are no wikis", "../../course/view.php?id=$course->id");
die;
}
$usesections = course_format_uses_sections($course->format);
if ($usesections) {
$sections = get_all_sections($course->id);
}
/// Print the list of instances (your module will probably extend this)
$timenow = time();
$strsectionname = get_string('sectionname', 'format_'.$course->format);
$strname = get_string("name");
if ($usesections) {
$table->head = array ($strsectionname, $strname);
$table->align = array("center", "left");
} else {
$table->head = array ($strname);
$table->align = array("left");
}
foreach ($wikis as $wiki) {
if (!$wiki->visible) {
//Show dimmed if the mod is hidden
$link = "coursemodule\">$wiki->name";
} else {
//Show normal if the mod is visible
$link = "coursemodule\">$wiki->name";
}
if ($usesections) {
$table->data[] = array(get_section_name($course, $sections[$wiki->section]), $link);
} else {
$table->data[] = array($link);
}
}
echo "
";
print_table($table);
/// Finish the page
print_footer($course);