mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
81 lines
2.7 KiB
PHP
81 lines
2.7 KiB
PHP
<?php // $Id$
|
|
|
|
require_once("../../config.php");
|
|
require_once("lib.php");
|
|
|
|
require_variable($id); // course
|
|
|
|
if (! $course = get_record("course", "id", $id)) {
|
|
error("Course ID is incorrect");
|
|
}
|
|
|
|
require_course_login($course);
|
|
|
|
add_to_log($course->id, "survey", "view all", "index.php?id=$course->id", "");
|
|
|
|
$strsurveys = get_string("modulenameplural", "survey");
|
|
$strweek = get_string("week");
|
|
$strtopic = get_string("topic");
|
|
$strname = get_string("name");
|
|
$strstatus = get_string("status");
|
|
$strdone = get_string("done", "survey");
|
|
$strnotdone = get_string("notdone", "survey");
|
|
|
|
print_header_simple("$strsurveys", "", "$strsurveys",
|
|
"", "", true, "", navmenu($course));
|
|
|
|
if (! $surveys = get_all_instances_in_course("survey", $course)) {
|
|
notice("There are no surveys.", "../../course/view.php?id=$course->id");
|
|
}
|
|
|
|
if ($course->format == "weeks") {
|
|
$table->head = array ($strweek, $strname, $strstatus);
|
|
$table->align = array ("CENTER", "LEFT", "LEFT");
|
|
} else if ($course->format == "topics") {
|
|
$table->head = array ($strtopic, $strname, $strstatus);
|
|
$table->align = array ("CENTER", "LEFT", "LEFT");
|
|
} else {
|
|
$table->head = array ($strname, $strstatus);
|
|
$table->align = array ("LEFT", "LEFT");
|
|
}
|
|
|
|
$currentsection = '';
|
|
|
|
foreach ($surveys as $survey) {
|
|
if (isset($USER->id) and survey_already_done($survey->id, $USER->id)) {
|
|
$ss = $strdone;
|
|
} else {
|
|
$ss = $strnotdone;
|
|
}
|
|
$printsection = "";
|
|
if ($survey->section !== $currentsection) {
|
|
if ($survey->section) {
|
|
$printsection = $survey->section;
|
|
}
|
|
if ($currentsection !== "") {
|
|
$table->data[] = 'hr';
|
|
}
|
|
$currentsection = $survey->section;
|
|
}
|
|
//Calculate the href
|
|
if (!$survey->visible) {
|
|
//Show dimmed if the mod is hidden
|
|
$tt_href = "<a class=\"dimmed\" href=\"view.php?id=$survey->coursemodule\">".format_string($survey->name,true)."</a>";
|
|
} else {
|
|
//Show normal if the mod is visible
|
|
$tt_href = "<a href=\"view.php?id=$survey->coursemodule\">".format_string($survey->name,true)".</a>";
|
|
}
|
|
|
|
if ($course->format == "weeks" or $course->format == "topics") {
|
|
$table->data[] = array ($printsection, $tt_href, "<a href=\"view.php?id=$survey->coursemodule\">$ss</a>");
|
|
} else {
|
|
$table->data[] = array ($tt_href, "<a href=\"view.php?id=$survey->coursemodule\">$ss</a>");
|
|
}
|
|
}
|
|
|
|
echo "<br />";
|
|
print_table($table);
|
|
print_footer($course);
|
|
|
|
?>
|