Files
moodle/mod/lams/index.php
T
tjhunt 38e179a4ed MDL-11741 - Convert core modules to take advantage of recent improvements to build_navigation.
This check-in removes about 400 lines of code. I hope I have not screwed anything up. I would be grateful if people could review this change, and keep an eye on the navigation bar in modules.

Any navigation bar bugs you find in the near future, feel free to file them in the tracker and assign them to me. Thanks.

If not to many problems are found, I think I would like to backport this to 1.9 stable, but I am not sure that is a good idea. Opinions to the General Developer Forum please. I am about to start a thread there.
2007-10-12 15:55:49 +00:00

83 lines
2.3 KiB
PHP

<?php // $Id$
/// This page lists all the instances of lams in a particular course
require_once("../../config.php");
require_once("lib.php");
$id = required_param('id', PARAM_INT); // course
if (! $course = get_record("course", "id", $id)) {
error("Course ID is incorrect");
}
require_login($course->id);
add_to_log($course->id, "lams", "view all", "index.php?id=$course->id", "");
/// Get all required strings
$strlamss = get_string("modulenameplural", "lams");
$strlams = get_string("modulename", "lams");
/// Print the header
$navlinks = array();
$navlinks[] = array('name' => $strlamss, 'link' => '', 'type' => 'activity');
$navigation = build_navigation($navlinks);
print_header("$course->shortname: $strlamss", $course->fullname, "$navigation $strlamss", "", "", true, "", navmenu($course));
/// Get all the appropriate data
if (! $lamss = get_all_instances_in_course("lams", $course)) {
notice("There are no lams", "../../course/view.php?id=$course->id");
die;
}
/// Print the list of instances (your module will probably extend this)
$timenow = time();
$strname = get_string("name");
$strweek = get_string("week");
$strtopic = get_string("topic");
if ($course->format == "weeks") {
$table->head = array ($strweek, $strname);
$table->align = array ('center', 'left');
} else if ($course->format == "topics") {
$table->head = array ($strtopic, $strname);
$table->align = array ('center', 'left', 'left', 'left');
} else {
$table->head = array ($strname);
$table->align = array ('left', 'left', 'left');
}
foreach ($lamss as $lams) {
if (!$lams->visible) {
//Show dimmed if the mod is hidden
$link = "<a class=\"dimmed\" href=\"view.php?id=$lams->coursemodule\">$lams->name</a>";
} else {
//Show normal if the mod is visible
$link = "<a href=\"view.php?id=$lams->coursemodule\">$lams->name</a>";
}
if ($course->format == 'weeks' or $course->format == 'topics') {
$table->data[] = array ($lams->section, $link);
} else {
$table->data[] = array ($link);
}
}
echo '<br />';
print_table($table);
/// Finish the page
print_footer($course);
?>