2001-11-22 06:23:56 +00:00
|
|
|
<?PHP // $Id$
|
|
|
|
|
|
|
|
// Display the course home page.
|
|
|
|
|
|
|
|
require("../config.php");
|
|
|
|
require("lib.php");
|
|
|
|
|
2002-07-29 13:10:25 +00:00
|
|
|
optional_variable($id);
|
|
|
|
optional_variable($name);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-07-29 13:10:25 +00:00
|
|
|
if (!$id and !$name) {
|
|
|
|
error("Must specify course id or short name");
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-07-29 13:10:25 +00:00
|
|
|
if ($name) {
|
|
|
|
if (! $course = get_record("course", "shortname", $name) ) {
|
|
|
|
error("That's an invalid short course name");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (! $course = get_record("course", "id", $id) ) {
|
|
|
|
error("That's an invalid course id");
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2002-07-29 13:10:25 +00:00
|
|
|
require_login($id);
|
|
|
|
|
2002-05-31 09:34:50 +00:00
|
|
|
add_to_log($course->id, "course", "view", "view.php?id=$course->id", "$course->id");
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-04-03 06:36:04 +00:00
|
|
|
if ( isteacher($course->id) ) {
|
2001-11-22 06:23:56 +00:00
|
|
|
if ($edit == "on") {
|
|
|
|
$USER->editing = true;
|
|
|
|
} else if ($edit == "off") {
|
|
|
|
$USER->editing = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($help == "on") {
|
|
|
|
$USER->help = true;
|
|
|
|
} else if ($help == "off") {
|
|
|
|
$USER->help = false;
|
|
|
|
}
|
|
|
|
|
2002-08-06 17:23:45 +00:00
|
|
|
save_session("USER");
|
|
|
|
|
2001-11-25 15:48:24 +00:00
|
|
|
if (! $course->category) { // This course is not a real course.
|
|
|
|
redirect("$CFG->wwwroot");
|
|
|
|
}
|
|
|
|
|
2002-07-04 07:52:06 +00:00
|
|
|
$courseword = get_string("course");
|
|
|
|
|
|
|
|
print_header("$courseword: $course->fullname", "$course->fullname", "$course->shortname", "search.search", "", true,
|
2002-06-08 06:52:00 +00:00
|
|
|
update_course_icon($course->id));
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2002-08-03 08:16:31 +00:00
|
|
|
get_all_mods($course->id, $mods, $modnames, $modnamesplural, $modnamesused, $modsectioncounts);
|
2002-08-03 11:58:40 +00:00
|
|
|
$sections = get_all_sections($course->id);
|
2002-07-23 16:24:12 +00:00
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
switch ($course->format) {
|
2002-06-25 11:49:06 +00:00
|
|
|
case "weeks":
|
2001-11-22 06:23:56 +00:00
|
|
|
include("weeks.php");
|
|
|
|
break;
|
2002-06-25 11:49:06 +00:00
|
|
|
case "social":
|
2002-02-26 06:34:29 +00:00
|
|
|
include("social.php");
|
|
|
|
break;
|
2002-06-25 11:49:06 +00:00
|
|
|
case "topics":
|
2002-06-19 05:04:31 +00:00
|
|
|
include("topics.php");
|
|
|
|
break;
|
2002-02-26 06:34:29 +00:00
|
|
|
default:
|
|
|
|
error("Course format not defined yet!");
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
print_footer($course);
|
|
|
|
|
|
|
|
?>
|