2004-09-12 12:21:27 +00:00
|
|
|
<?php // $Id$
|
2001-11-22 06:23:56 +00:00
|
|
|
|
|
|
|
// Display the course home page.
|
|
|
|
|
2004-06-02 08:13:26 +00:00
|
|
|
require_once('../config.php');
|
|
|
|
require_once('lib.php');
|
|
|
|
require_once($CFG->libdir.'/blocklib.php');
|
2006-10-24 08:13:13 +00:00
|
|
|
require_once($CFG->libdir.'/ajax/ajaxlib.php');
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-01-28 00:02:33 +00:00
|
|
|
$id = optional_param('id', 0, PARAM_INT);
|
2006-04-11 21:41:21 +00:00
|
|
|
$name = optional_param('name', '', PARAM_RAW);
|
|
|
|
$edit = optional_param('edit', -1, PARAM_BOOL);
|
|
|
|
$hide = optional_param('hide', 0, PARAM_INT);
|
|
|
|
$show = optional_param('show', 0, PARAM_INT);
|
|
|
|
$idnumber = optional_param('idnumber', '', PARAM_RAW);
|
|
|
|
$section = optional_param('section', 0, PARAM_INT);
|
|
|
|
$move = optional_param('move', 0, PARAM_INT);
|
2006-06-03 23:49:15 +00:00
|
|
|
$marker = optional_param('marker',-1 , PARAM_INT);
|
2006-09-21 09:16:41 +00:00
|
|
|
$switchrole = optional_param('switchrole',-1, PARAM_INT);
|
|
|
|
|
2006-04-09 02:06:26 +00:00
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-11-16 23:21:36 +00:00
|
|
|
if (empty($id) && empty($name) && empty($idnumber)) {
|
|
|
|
error("Must specify course id, short name or idnumber");
|
2002-07-29 13:10:25 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-01-28 00:02:33 +00:00
|
|
|
if (!empty($name)) {
|
|
|
|
if (! ($course = get_record('course', 'shortname', $name)) ) {
|
|
|
|
error('Invalid short course name');
|
2002-07-29 13:10:25 +00:00
|
|
|
}
|
2005-02-09 13:20:24 +00:00
|
|
|
} else if (!empty($idnumber)) {
|
|
|
|
if (! ($course = get_record('course', 'idnumber', $idnumber)) ) {
|
|
|
|
error('Invalid course idnumber');
|
|
|
|
}
|
2002-07-29 13:10:25 +00:00
|
|
|
} else {
|
2005-01-28 00:02:33 +00:00
|
|
|
if (! ($course = get_record('course', 'id', $id)) ) {
|
|
|
|
error('Invalid course id');
|
2002-07-29 13:10:25 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2006-09-21 09:16:41 +00:00
|
|
|
if (!$context = get_context_instance(CONTEXT_COURSE, $course->id)) {
|
|
|
|
print_error('nocontext');
|
|
|
|
}
|
|
|
|
|
2006-09-22 01:29:11 +00:00
|
|
|
if ($switchrole == 0) { // Remove any switched roles before checking login
|
|
|
|
role_switch($switchrole, $context);
|
|
|
|
}
|
|
|
|
|
2003-05-24 07:29:17 +00:00
|
|
|
require_login($course->id);
|
2002-07-29 13:10:25 +00:00
|
|
|
|
2006-09-22 01:29:11 +00:00
|
|
|
if ($switchrole > 0) {
|
2006-09-21 09:16:41 +00:00
|
|
|
role_switch($switchrole, $context);
|
2006-09-22 01:29:11 +00:00
|
|
|
require_login($course->id); // Double check that this role is allowed here
|
2006-09-21 09:16:41 +00:00
|
|
|
}
|
|
|
|
|
2005-02-16 13:41:37 +00:00
|
|
|
//If course is hosted on an external server, redirect to corresponding
|
|
|
|
//url with appropriate authentication attached as parameter
|
2005-07-13 01:51:30 +00:00
|
|
|
if (file_exists($CFG->dirroot .'/course/externservercourse.php')) {
|
|
|
|
include $CFG->dirroot .'/course/externservercourse.php';
|
2006-09-03 08:46:30 +00:00
|
|
|
if (function_exists('extern_server_course')) {
|
2005-02-16 13:41:37 +00:00
|
|
|
if ($extern_url = extern_server_course($course)) {
|
|
|
|
redirect($extern_url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-21 09:16:41 +00:00
|
|
|
|
2004-06-02 08:13:26 +00:00
|
|
|
require_once($CFG->dirroot.'/calendar/lib.php'); /// This is after login because it needs $USER
|
2004-05-25 06:35:49 +00:00
|
|
|
|
2005-07-13 01:51:30 +00:00
|
|
|
add_to_log($course->id, 'course', 'view', "view.php?id=$course->id", "$course->id");
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-01-22 09:06:51 +00:00
|
|
|
$course->format = clean_param($course->format, PARAM_ALPHA);
|
2004-04-18 23:20:53 +00:00
|
|
|
if (!file_exists($CFG->dirroot.'/course/format/'.$course->format.'/format.php')) {
|
|
|
|
$course->format = 'weeks'; // Default format is weeks
|
|
|
|
}
|
|
|
|
|
2005-01-31 02:18:15 +00:00
|
|
|
$PAGE = page_create_object(PAGE_COURSE_VIEW, $course->id);
|
2006-10-24 08:13:13 +00:00
|
|
|
$pageblocks = blocks_setup($PAGE, BLOCKS_PINNED_BOTH);
|
|
|
|
|
2005-01-18 11:08:58 +00:00
|
|
|
|
2004-04-18 23:20:53 +00:00
|
|
|
if (!isset($USER->editing)) {
|
2006-04-23 20:58:06 +00:00
|
|
|
$USER->editing = 0;
|
2004-04-18 23:20:53 +00:00
|
|
|
}
|
2005-02-12 13:09:18 +00:00
|
|
|
if ($PAGE->user_allowed_editing()) {
|
2006-04-11 21:41:21 +00:00
|
|
|
if (($edit == 1) and confirm_sesskey()) {
|
2006-04-23 20:58:06 +00:00
|
|
|
$USER->editing = 1;
|
2006-04-11 21:41:21 +00:00
|
|
|
} else if (($edit == 0) and confirm_sesskey()) {
|
2006-04-23 20:58:06 +00:00
|
|
|
$USER->editing = 0;
|
2005-02-12 13:09:18 +00:00
|
|
|
if(!empty($USER->activitycopy) && $USER->activitycopycourse == $course->id) {
|
|
|
|
$USER->activitycopy = false;
|
|
|
|
$USER->activitycopycourse = NULL;
|
2002-12-29 17:32:32 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2002-08-06 17:23:45 +00:00
|
|
|
|
2006-04-11 21:41:21 +00:00
|
|
|
if ($hide && confirm_sesskey()) {
|
2004-04-20 07:32:57 +00:00
|
|
|
set_section_visible($course->id, $hide, '0');
|
2003-05-24 06:59:36 +00:00
|
|
|
}
|
2003-05-04 07:59:46 +00:00
|
|
|
|
2006-04-11 21:41:21 +00:00
|
|
|
if ($show && confirm_sesskey()) {
|
2004-04-20 07:32:57 +00:00
|
|
|
set_section_visible($course->id, $show, '1');
|
2003-05-24 06:59:36 +00:00
|
|
|
}
|
2003-06-10 15:27:09 +00:00
|
|
|
|
|
|
|
if (!empty($section)) {
|
2004-10-09 20:16:05 +00:00
|
|
|
if (!empty($move) and confirm_sesskey()) {
|
2003-08-21 15:06:32 +00:00
|
|
|
if (!move_section($course, $section, $move)) {
|
2005-07-13 01:51:30 +00:00
|
|
|
notify('An error occurred while moving a section');
|
2003-08-21 15:06:32 +00:00
|
|
|
}
|
2003-06-10 15:27:09 +00:00
|
|
|
}
|
|
|
|
}
|
2003-08-16 02:45:44 +00:00
|
|
|
} else {
|
2006-04-23 20:58:06 +00:00
|
|
|
$USER->editing = 0;
|
2003-05-04 07:59:46 +00:00
|
|
|
}
|
|
|
|
|
2005-07-13 01:51:30 +00:00
|
|
|
$SESSION->fromdiscussion = $CFG->wwwroot .'/course/view.php?id='. $course->id;
|
2002-09-25 08:17:35 +00:00
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
|
|
|
|
if ($course->id == SITEID) {
|
|
|
|
// This course is not a real course.
|
2005-07-13 01:51:30 +00:00
|
|
|
redirect($CFG->wwwroot .'/');
|
2004-09-26 02:42:54 +00:00
|
|
|
}
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
// AJAX-capable course format?
|
2006-10-30 09:41:55 +00:00
|
|
|
$CFG->useajax = false;
|
2006-10-24 08:13:13 +00:00
|
|
|
$ajaxformatfile = $CFG->dirroot.'/course/format/'.$course->format.'/ajax.php';
|
2006-10-26 07:46:22 +00:00
|
|
|
$meta = '';
|
|
|
|
$bodytags = '';
|
2006-10-24 08:13:13 +00:00
|
|
|
|
|
|
|
if (file_exists($ajaxformatfile)) {
|
|
|
|
require_once($ajaxformatfile);
|
2006-10-26 07:46:22 +00:00
|
|
|
|
2006-10-27 20:34:40 +00:00
|
|
|
if ($USER->editing && !empty($USER->ajax) && !empty($CFG->enableajax) && $CFG->ajaxcapable) {
|
|
|
|
|
2006-10-26 07:46:22 +00:00
|
|
|
if ($meta = require_js(array('yui_yahoo',
|
|
|
|
'yui_dom',
|
|
|
|
'yui_event',
|
|
|
|
'yui_dragdrop',
|
|
|
|
'yui_connection'))) {
|
|
|
|
|
|
|
|
if (debugging('', DEBUG_DEVELOPER)) {
|
|
|
|
$meta .= require_js(array('yui_logger'));
|
|
|
|
|
|
|
|
$bodytags = 'onLoad = "javascript:
|
|
|
|
show_logger = function() {
|
|
|
|
var logreader = new YAHOO.widget.LogReader();
|
|
|
|
logreader.newestOnTop = false;
|
|
|
|
logreader.setTitle(\'Moodle Debug: YUI Log Console\');
|
|
|
|
};
|
|
|
|
show_logger();
|
|
|
|
"';
|
|
|
|
}
|
|
|
|
// Okay, global variable alert. VERY UGLY. We need to create
|
|
|
|
// this object here before the <blockname>_print_block()
|
|
|
|
// function is called, since that function needs to set some
|
|
|
|
// stuff in the javascriptportal object.
|
|
|
|
$COURSE->javascriptportal = new jsportal();
|
2006-10-30 09:41:55 +00:00
|
|
|
$CFG->useajax = true;
|
2006-10-26 07:46:22 +00:00
|
|
|
}
|
2006-10-24 08:13:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-30 09:41:55 +00:00
|
|
|
$CFG->blocksdrag = $CFG->useajax; // this will add a new class to the header so we can style differently
|
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
|
|
|
|
$PAGE->print_header(get_string('course').': %fullname%', NULL, $meta, $bodytags);
|
|
|
|
// Course wrapper start.
|
|
|
|
echo '<div class="course-content">';
|
|
|
|
|
2005-01-18 11:08:58 +00:00
|
|
|
|
2002-12-29 17:32:32 +00:00
|
|
|
get_all_mods($course->id, $mods, $modnames, $modnamesplural, $modnamesused);
|
2002-12-22 06:45:09 +00:00
|
|
|
|
2003-05-04 09:43:03 +00:00
|
|
|
if (! $sections = get_all_sections($course->id)) { // No sections found
|
|
|
|
// Double-check to be extra sure
|
2005-07-13 01:51:30 +00:00
|
|
|
if (! $section = get_record('course_sections', 'course', $course->id, 'section', 0)) {
|
2003-05-04 09:43:03 +00:00
|
|
|
$section->course = $course->id; // Create a default section.
|
|
|
|
$section->section = 0;
|
|
|
|
$section->visible = 1;
|
2005-07-13 01:51:30 +00:00
|
|
|
$section->id = insert_record('course_sections', $section);
|
2003-05-04 09:43:03 +00:00
|
|
|
}
|
|
|
|
if (! $sections = get_all_sections($course->id) ) { // Try again
|
2005-07-13 01:51:30 +00:00
|
|
|
error('Error finding or creating section structures for this course');
|
2002-12-22 06:45:09 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-23 16:24:12 +00:00
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
|
|
|
|
if (empty($course->modinfo)) {
|
|
|
|
// Course cache was never made.
|
2003-08-14 10:32:51 +00:00
|
|
|
rebuild_course_cache($course->id);
|
2005-07-13 01:51:30 +00:00
|
|
|
if (! $course = get_record('course', 'id', $course->id) ) {
|
2003-08-22 16:20:35 +00:00
|
|
|
error("That's an invalid course id");
|
|
|
|
}
|
2003-08-14 10:32:51 +00:00
|
|
|
}
|
|
|
|
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
// Include the actual course format.
|
|
|
|
require($CFG->dirroot .'/course/format/'. $course->format .'/format.php');
|
|
|
|
// Content wrapper end.
|
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
// Use AJAX?
|
2006-10-30 09:41:55 +00:00
|
|
|
if ($CFG->useajax) {
|
2006-10-24 08:13:13 +00:00
|
|
|
// At the bottom because we want to process sections and activities
|
|
|
|
// after the relevant html has been generated.
|
2006-10-26 07:46:22 +00:00
|
|
|
if ($jsincludes = require_js(array('ajaxcourse_blocks',
|
|
|
|
'ajaxcourse_sections',
|
|
|
|
'ajaxcourse'))) {
|
|
|
|
echo $jsincludes;
|
|
|
|
$COURSE->javascriptportal->print_javascript($course->id);
|
|
|
|
}
|
2006-10-24 08:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-02 19:09:54 +00:00
|
|
|
print_footer(NULL, $course);
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-10-30 09:41:55 +00:00
|
|
|
?>
|