moodle/course/view.php

122 lines
3.9 KiB
PHP
Raw Normal View History

2004-09-12 12:21:27 +00:00
<?php // $Id$
2001-11-22 06:23:56 +00:00
// Display the course home page.
require_once('../config.php');
require_once('lib.php');
require_once($CFG->libdir.'/blocklib.php');
2001-11-22 06:23:56 +00:00
$id = optional_param('id', 0, PARAM_INT);
$name = optional_param('name');
$blockaction = optional_param('blockaction');
2001-11-22 06:23:56 +00:00
if (empty($id) && empty($name)) {
error("Must specify course id or short name");
}
2001-11-22 06:23:56 +00:00
if (!empty($name)) {
if (! ($course = get_record('course', 'shortname', $name)) ) {
error('Invalid short course name');
}
} else {
if (! ($course = get_record('course', 'id', $id)) ) {
error('Invalid course id');
}
2001-11-22 06:23:56 +00:00
}
require_login($course->id);
require_once($CFG->dirroot.'/calendar/lib.php'); /// This is after login because it needs $USER
add_to_log($course->id, "course", "view", "view.php?id=$course->id", "$course->id");
2001-11-22 06:23:56 +00:00
$course->format = clean_param($course->format, PARAM_ALPHA);
if (!file_exists($CFG->dirroot.'/course/format/'.$course->format.'/format.php')) {
$course->format = 'weeks'; // Default format is weeks
}
$PAGE = page_create_object(PAGE_COURSE_VIEW, $course->id);
$pageblocks = blocks_get_by_page($PAGE);
2005-01-18 11:08:58 +00:00
if (!isset($USER->editing)) {
$USER->editing = false;
}
$editing = false;
if (isteacheredit($course->id)) {
if (isset($edit)) {
if ($edit == "on") {
$USER->editing = true;
} else if ($edit == "off") {
$USER->editing = false;
}
2001-11-22 06:23:56 +00:00
}
$editing = $USER->editing;
if (isset($hide) && confirm_sesskey()) {
set_section_visible($course->id, $hide, '0');
}
2003-05-04 07:59:46 +00:00
if (isset($show) && confirm_sesskey()) {
set_section_visible($course->id, $show, '1');
}
2003-06-10 15:27:09 +00:00
if (!empty($blockaction)) {
blocks_execute_url_action($PAGE, $pageblocks);
// This re-query could be eliminated by judicious programming in blocks_execute_action(),
// but I 'm not sure if it's worth the complexity increase...
$pageblocks = blocks_get_by_page($PAGE);
}
2003-06-10 15:27:09 +00:00
if (!empty($section)) {
if (!empty($move) and confirm_sesskey()) {
if (!move_section($course, $section, $move)) {
notify("An error occurred while moving a section");
}
2003-06-10 15:27:09 +00:00
}
}
2003-08-16 02:45:44 +00:00
} else {
$USER->editing = false;
2003-05-04 07:59:46 +00:00
}
$SESSION->fromdiscussion = "$CFG->wwwroot/course/view.php?id=$course->id";
if ($course->id == SITEID) { // This course is not a real course.
redirect("$CFG->wwwroot/");
}
$PAGE->print_header(get_string('course').': %fullname%');
2001-11-22 06:23:56 +00:00
echo '<div class="course-content">'; // course wrapper start
2005-01-18 11:08:58 +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)) { // No sections found
// Double-check to be extra sure
if (! $section = get_record("course_sections", "course", $course->id, "section", 0)) {
$section->course = $course->id; // Create a default section.
$section->section = 0;
$section->visible = 1;
$section->id = insert_record("course_sections", $section);
}
if (! $sections = get_all_sections($course->id) ) { // Try again
2002-12-22 06:45:09 +00:00
error("Error finding or creating section structures for this course");
}
}
if (empty($course->modinfo)) { // Course cache was never made
rebuild_course_cache($course->id);
if (! $course = get_record("course", "id", $course->id) ) {
error("That's an invalid course id");
}
}
require("$CFG->dirroot/course/format/$course->format/format.php"); // Include the actual course format
2001-11-22 06:23:56 +00:00
2005-01-18 11:08:58 +00:00
echo '</div>'; // content wrapper end
print_footer(NULL, $course);
2001-11-22 06:23:56 +00:00
?>