moodle/course/view.php

89 lines
2.4 KiB
PHP
Raw Normal View History

2001-11-22 06:23:56 +00:00
<?PHP // $Id$
// Display the course home page.
require_once("../config.php");
require_once("lib.php");
2001-11-22 06:23:56 +00:00
optional_variable($id);
optional_variable($name);
2001-11-22 06:23:56 +00:00
if (!$id and !$name) {
error("Must specify course id or short name");
}
2001-11-22 06:23:56 +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
}
require_login($id);
add_to_log($course->id, "course", "view", "view.php?id=$course->id", "$course->id");
2001-11-22 06:23:56 +00:00
if (isset($edit)) {
if (isteacher($course->id)) {
if ($edit == "on") {
$USER->editing = true;
} else if ($edit == "off") {
$USER->editing = false;
}
2001-11-22 06:23:56 +00:00
}
}
if (isset($help)) {
if ($help == "on") {
$USER->help = true;
} else if ($help == "off") {
$USER->help = false;
}
2001-11-22 06:23:56 +00:00
}
$SESSION->fromdiscussion = "$CFG->wwwroot/course/view.php?id=$course->id";
2002-09-25 14:40:28 +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");
$loggedinas = "<p class=\"logininfo\">".user_login_string($course, $USER)."</p>";
2002-07-04 07:52:06 +00:00
print_header("$courseword: $course->fullname", "$course->fullname", "$course->shortname", "search.search", "", true,
update_course_icon($course->id), $loggedinas);
2001-11-22 06:23:56 +00:00
get_all_mods($course->id, $mods, $modnames, $modnamesplural, $modnamesused);
2002-12-22 06:45:09 +00:00
if (! $sections = get_all_sections($course->id)) {
$section->course = $course->id; // Create a default section.
$section->section = 0;
$section->id = insert_record("course_sections", $section);
if (! $sections = get_all_sections($course->id) ) {
error("Error finding or creating section structures for this course");
}
}
2001-11-22 06:23:56 +00:00
switch ($course->format) {
case "weeks":
2001-11-22 06:23:56 +00:00
include("weeks.php");
break;
case "social":
include("social.php");
break;
case "topics":
include("topics.php");
break;
default:
error("Course format not defined yet!");
2001-11-22 06:23:56 +00:00
}
print_footer();
2001-11-22 06:23:56 +00:00
?>