mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
98ca59f6e1
It's getting pretty useful now!
81 lines
2.6 KiB
PHP
Executable File
81 lines
2.6 KiB
PHP
Executable File
<?PHP // $Id$
|
|
|
|
require_once("../../config.php");
|
|
|
|
require_variable($id); // course
|
|
|
|
if (! $course = get_record("course", "id", $id)) {
|
|
error("Course ID is incorrect");
|
|
}
|
|
|
|
if ($course->category) {
|
|
require_login($course->id);
|
|
$navigation = "<A HREF=\"../../course/view.php?id=$course->id\">$course->shortname</A> ->";
|
|
}
|
|
|
|
add_to_log($course->id, "scorm", "view all", "index.php?id=$course->id", "");
|
|
|
|
$strscorm = get_string("modulename", "scorm");
|
|
$strscorms = get_string("modulenameplural", "scorm");
|
|
$strweek = get_string("week");
|
|
$strtopic = get_string("topic");
|
|
$strname = get_string("name");
|
|
$strsummary = get_string("summary");
|
|
$strlastmodified = get_string("lastmodified");
|
|
|
|
print_header("$course->shortname: $strscorms", "$course->fullname", "$navigation $strscorms",
|
|
"", "", true, "", navmenu($course));
|
|
|
|
if ($course->format == "weeks" or $course->format == "topics") {
|
|
$sortorder = "cw.section ASC";
|
|
} else {
|
|
$sortorder = "m.timemodified DESC";
|
|
}
|
|
|
|
if (! $scorms = get_all_instances_in_course("scorm", $course)) {
|
|
notice("There are no scorms", "../../course/view.php?id=$course->id");
|
|
exit;
|
|
}
|
|
|
|
if ($course->format == "weeks") {
|
|
$table->head = array ($strweek, $strname, $strsummary);
|
|
$table->align = array ("CENTER", "LEFT", "LEFT");
|
|
} else if ($course->format == "topics") {
|
|
$table->head = array ($strtopic, $strname, $strsummary);
|
|
$table->align = array ("CENTER", "LEFT", "LEFT");
|
|
} else {
|
|
$table->head = array ($strlastmodified, $strname, $strsummary);
|
|
$table->align = array ("LEFT", "LEFT", "LEFT");
|
|
}
|
|
|
|
foreach ($scorms as $scorm) {
|
|
|
|
$tt = "";
|
|
if ($course->format == "weeks" or $course->format == "topics") {
|
|
if ($scorm->section) {
|
|
$tt = "$scorm->section";
|
|
}
|
|
} else {
|
|
$tt = "<FONT SIZE=1>".userdate($scorm->timemodified);
|
|
}
|
|
if (!$scorm->visible) {
|
|
//Show dimmed if the mod is hidden
|
|
$table->data[] = array ($tt, "<A class=\"dimmed\" HREF=\"view.php?id=$scorm->coursemodule\">$scorm->name</A>",
|
|
text_to_html($scorm->summary) );
|
|
} else {
|
|
//Show normal if the mod is visible
|
|
$table->data[] = array ($tt, "<A HREF=\"view.php?id=$scorm->coursemodule\">$scorm->name</A>",
|
|
text_to_html($scorm->summary) );
|
|
}
|
|
}
|
|
|
|
echo "<BR>";
|
|
|
|
print_table($table);
|
|
|
|
print_footer($course);
|
|
|
|
|
|
?>
|
|
|