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');
|
2007-04-17 09:29:55 +00:00
|
|
|
require_once($CFG->dirroot.'/mod/forum/lib.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);
|
|
|
|
|
2005-11-16 23:21:36 +00:00
|
|
|
if (empty($id) && empty($name) && empty($idnumber)) {
|
2008-04-26 11:02:51 +00:00
|
|
|
print_error('unspecifycourseid', 'error');
|
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)) {
|
2008-06-02 08:13:24 +00:00
|
|
|
if (! ($course = $DB->get_record('course', array('shortname'=>$name)))) {
|
2008-04-26 11:02:51 +00:00
|
|
|
print_error('invalidcoursenameshort', 'error');
|
2002-07-29 13:10:25 +00:00
|
|
|
}
|
2005-02-09 13:20:24 +00:00
|
|
|
} else if (!empty($idnumber)) {
|
2008-06-02 08:13:24 +00:00
|
|
|
if (! ($course = $DB->get_record('course', array('idnumber'=>$idnumber)))) {
|
2008-04-26 11:02:51 +00:00
|
|
|
print_error('invalidcourseid', 'error');
|
2005-02-09 13:20:24 +00:00
|
|
|
}
|
2002-07-29 13:10:25 +00:00
|
|
|
} else {
|
2008-06-02 08:13:24 +00:00
|
|
|
if (! ($course = $DB->get_record('course', array('id'=>$id)))) {
|
2008-04-26 11:02:51 +00:00
|
|
|
print_error('invalidcourseid', 'error');
|
2002-07-29 13:10:25 +00:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 17:52:29 +00:00
|
|
|
preload_course_contexts($course->id);
|
2006-09-21 09:16:41 +00:00
|
|
|
if (!$context = get_context_instance(CONTEXT_COURSE, $course->id)) {
|
|
|
|
print_error('nocontext');
|
|
|
|
}
|
|
|
|
|
2007-09-19 07:06:44 +00:00
|
|
|
// Remove any switched roles before checking login
|
|
|
|
if ($switchrole == 0 && confirm_sesskey()) {
|
2006-09-22 01:29:11 +00:00
|
|
|
role_switch($switchrole, $context);
|
|
|
|
}
|
|
|
|
|
2008-02-23 18:42:00 +00:00
|
|
|
require_login($course);
|
2002-07-29 13:10:25 +00:00
|
|
|
|
2007-09-19 07:06:44 +00:00
|
|
|
// Switchrole - sanity check in cost-order...
|
2008-04-25 14:10:02 +00:00
|
|
|
$reset_user_allowed_editing = false;
|
2007-09-19 07:06:44 +00:00
|
|
|
if ($switchrole > 0 && confirm_sesskey() &&
|
|
|
|
has_capability('moodle/role:switchroles', $context)) {
|
|
|
|
// is this role assignable in this context?
|
|
|
|
// inquiring minds want to know...
|
2009-03-23 08:15:21 +00:00
|
|
|
$aroles = get_switchable_roles($context);
|
2007-09-19 07:06:44 +00:00
|
|
|
if (is_array($aroles) && isset($aroles[$switchrole])) {
|
|
|
|
role_switch($switchrole, $context);
|
|
|
|
// Double check that this role is allowed here
|
|
|
|
require_login($course->id);
|
|
|
|
}
|
2008-04-25 14:10:02 +00:00
|
|
|
// reset course page state - this prevents some weird problems ;-)
|
|
|
|
$USER->activitycopy = false;
|
|
|
|
$USER->activitycopycourse = NULL;
|
|
|
|
unset($USER->activitycopyname);
|
|
|
|
unset($SESSION->modform);
|
|
|
|
$USER->editing = 0;
|
|
|
|
$reset_user_allowed_editing = true;
|
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
|
|
|
|
}
|
|
|
|
|
2009-05-06 08:55:53 +00:00
|
|
|
$PAGE->set_url('course/view.php', array('id' => $course->id));
|
2009-05-06 09:12:03 +00:00
|
|
|
$PAGE->set_pagetype('course-view-' . $course->format);
|
2009-05-06 09:02:48 +00:00
|
|
|
$PAGE->set_other_editing_capability('moodle/course:manageactivities');
|
2009-05-06 09:29:05 +00:00
|
|
|
|
2008-04-25 14:10:02 +00:00
|
|
|
if ($reset_user_allowed_editing) {
|
|
|
|
// ugly hack
|
|
|
|
unset($PAGE->_user_allowed_editing);
|
|
|
|
}
|
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
|
|
|
}
|
2009-08-03 03:38:23 +00:00
|
|
|
// If this course is just an mnet shell (content provided by a course on a remote mnet host)
|
|
|
|
// direct anyone that isn't permitted to see the shell course directly to the content provider
|
|
|
|
if (!empty($course->mnetpeer) && !empty($course->remotecourseid)) {
|
|
|
|
$jumpurl = $CFG->wwwroot . '/auth/mnet/jump.php' .
|
|
|
|
'?hostid=' . $course->mnetpeer .
|
|
|
|
'&wantsurl=' . urlencode('/course/view.php?id=' . $course->remotecourseid);
|
|
|
|
if (!has_capability('moodle/course:seemnetshell', $context)) {
|
|
|
|
redirect($jumpurl);
|
|
|
|
}
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
// AJAX-capable course format?
|
2007-12-26 21:33:34 +00:00
|
|
|
$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
|
|
|
$bodytags = '';
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2007-12-26 21:33:34 +00:00
|
|
|
if (empty($CFG->disablecourseajax) and file_exists($ajaxformatfile)) { // Needs to exist otherwise no AJAX by default
|
2007-03-01 02:42:16 +00:00
|
|
|
|
2007-12-26 21:33:34 +00:00
|
|
|
// TODO: stop abusing CFG global here
|
2007-03-01 02:42:16 +00:00
|
|
|
$CFG->ajaxcapable = false; // May be overridden later by ajaxformatfile
|
|
|
|
$CFG->ajaxtestedbrowsers = array(); // May be overridden later by ajaxformatfile
|
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
require_once($ajaxformatfile);
|
2006-10-26 07:46:22 +00:00
|
|
|
|
2007-03-01 02:42:16 +00:00
|
|
|
if (!empty($USER->editing) && $CFG->ajaxcapable && has_capability('moodle/course:manageactivities', $context)) {
|
|
|
|
// Course-based switches
|
2006-10-27 20:34:40 +00:00
|
|
|
|
2007-03-01 02:42:16 +00:00
|
|
|
if (ajaxenabled($CFG->ajaxtestedbrowsers)) { // Browser, user and site-based switches
|
ajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.
There is a new implementation of require_js in lib/deprecatedlib.php,
based on $PAGE->requires.
There were a few other recently introduced functions in lib/weblib.php,
namely print_js_call, print_delayed_js_call, print_js_config and
standard_js_config. These have been removed, since they were never in
a stable branch, and all the places that used them have been changed
to use the newer $PAGE->requires->... methods.
get_require_js_code is also gone, and the evil places that were calling
it, even though it is an internal function, have been fixed.
Also, I made some minor improvements to the code I committed yesterday
for MDL-16695.
All that remains is to update all the places in core code that are
still using require_js.
(This commit also fixes the problem where the admin tree would not
start with the right categories expanded.)
2009-06-12 12:13:07 +00:00
|
|
|
$PAGE->requires->yui_lib('dragdrop');
|
|
|
|
$PAGE->requires->yui_lib('connection');
|
|
|
|
$PAGE->requires->js('lib/ajax/block_classes.js');
|
|
|
|
$PAGE->requires->js('lib/ajax/section_classes.js');
|
2007-02-02 06:35:59 +00:00
|
|
|
|
2006-10-26 07:46:22 +00:00
|
|
|
// 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();
|
2007-12-26 21:33:34 +00:00
|
|
|
$useajax = true;
|
2006-10-26 07:46:22 +00:00
|
|
|
}
|
2006-10-24 08:13:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-26 21:33:34 +00:00
|
|
|
$CFG->blocksdrag = $useajax; // this will add a new class to the header so we can style differently
|
2006-10-30 09:41:55 +00:00
|
|
|
|
ajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.
There is a new implementation of require_js in lib/deprecatedlib.php,
based on $PAGE->requires.
There were a few other recently introduced functions in lib/weblib.php,
namely print_js_call, print_delayed_js_call, print_js_config and
standard_js_config. These have been removed, since they were never in
a stable branch, and all the places that used them have been changed
to use the newer $PAGE->requires->... methods.
get_require_js_code is also gone, and the evil places that were calling
it, even though it is an internal function, have been fixed.
Also, I made some minor improvements to the code I committed yesterday
for MDL-16695.
All that remains is to update all the places in core code that are
still using require_js.
(This commit also fixes the problem where the admin tree would not
start with the right categories expanded.)
2009-06-12 12:13:07 +00:00
|
|
|
$completion = new completion_info($course);
|
|
|
|
if ($completion->is_enabled() && ajaxenabled()) {
|
|
|
|
$PAGE->requires->yui_lib('connection');
|
|
|
|
$PAGE->requires->js('course/completion.js');
|
2009-07-14 14:00:34 +00:00
|
|
|
$PAGE->requires->js_function_call('completion_init')->on_dom_ready();
|
ajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.
There is a new implementation of require_js in lib/deprecatedlib.php,
based on $PAGE->requires.
There were a few other recently introduced functions in lib/weblib.php,
namely print_js_call, print_delayed_js_call, print_js_config and
standard_js_config. These have been removed, since they were never in
a stable branch, and all the places that used them have been changed
to use the newer $PAGE->requires->... methods.
get_require_js_code is also gone, and the evil places that were calling
it, even though it is an internal function, have been fixed.
Also, I made some minor improvements to the code I committed yesterday
for MDL-16695.
All that remains is to update all the places in core code that are
still using require_js.
(This commit also fixes the problem where the admin tree would not
start with the right categories expanded.)
2009-06-12 12:13:07 +00:00
|
|
|
$PAGE->requires->data_for_js('completion_strsaved', get_string('saved', 'completion'));
|
|
|
|
$PAGE->requires->data_for_js('completion_strtitley', get_string('completion-title-manual-y', 'completion'));
|
|
|
|
$PAGE->requires->data_for_js('completion_strtitlen', get_string('completion-title-manual-n', 'completion'));
|
|
|
|
$PAGE->requires->data_for_js('completion_stralty', get_string('completion-alt-manual-y', 'completion'));
|
|
|
|
$PAGE->requires->data_for_js('completion_straltn', get_string('completion-alt-manual-n', 'completion'));
|
|
|
|
}
|
|
|
|
|
2009-05-06 09:19:46 +00:00
|
|
|
// The "Editing On" button will be appearing only in the "main" course screen
|
|
|
|
// (i.e., no breadcrumbs other than the default one added inside this function)
|
|
|
|
$buttons = switchroles_form($course->id);
|
|
|
|
if ($PAGE->user_allowed_editing()) {
|
|
|
|
$buttons .= update_course_icon($course->id );
|
|
|
|
}
|
|
|
|
|
|
|
|
$title = get_string('course') . ': ' . $course->fullname;
|
|
|
|
$navigation = build_navigation(array());
|
|
|
|
print_header($title, $course->fullname, $navigation, '', '', true,
|
|
|
|
$buttons, user_login_string($course, $USER), false, $bodytags);
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2009-08-03 03:38:23 +00:00
|
|
|
// If we are displaying a shell course, let the user know that this isn't what all users see
|
|
|
|
if (!empty($course->mnetpeer) && !empty($course->remotecourseid)
|
|
|
|
&& has_capability('moodle/course:seemnetshell', $context)) {
|
|
|
|
print_box(get_string('thiscourseisshell', 'moodle', $jumpurl), 'noticebox');
|
|
|
|
}
|
|
|
|
|
ajaxlib/require_js: MDL-16693 $PAGE->requires->... deprecates require_js etc.
There is a new implementation of require_js in lib/deprecatedlib.php,
based on $PAGE->requires.
There were a few other recently introduced functions in lib/weblib.php,
namely print_js_call, print_delayed_js_call, print_js_config and
standard_js_config. These have been removed, since they were never in
a stable branch, and all the places that used them have been changed
to use the newer $PAGE->requires->... methods.
get_require_js_code is also gone, and the evil places that were calling
it, even though it is an internal function, have been fixed.
Also, I made some minor improvements to the code I committed yesterday
for MDL-16695.
All that remains is to update all the places in core code that are
still using require_js.
(This commit also fixes the problem where the admin tree would not
start with the right categories expanded.)
2009-06-12 12:13:07 +00:00
|
|
|
if ($completion->is_enabled() && ajaxenabled()) {
|
2008-11-18 14:45:13 +00:00
|
|
|
// This value tracks whether there has been a dynamic change to the page.
|
|
|
|
// It is used so that if a user does this - (a) set some tickmarks, (b)
|
|
|
|
// go to another page, (c) clicks Back button - the page will
|
|
|
|
// automatically reload. Otherwise it would start with the wrong tick
|
|
|
|
// values.
|
|
|
|
print '<form action="."><div><input type="hidden" id="completion_dynamic_change"
|
|
|
|
name="completion_dynamic_change" value="0" /></div></form>';
|
2008-07-28 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
// Course wrapper start.
|
|
|
|
echo '<div class="course-content">';
|
|
|
|
|
2008-02-23 18:42:00 +00:00
|
|
|
$modinfo =& get_fast_modinfo($COURSE);
|
2002-12-29 17:32:32 +00:00
|
|
|
get_all_mods($course->id, $mods, $modnames, $modnamesplural, $modnamesused);
|
2008-02-23 18:42:00 +00:00
|
|
|
foreach($mods as $modid=>$unused) {
|
|
|
|
if (!isset($modinfo->cms[$modid])) {
|
|
|
|
rebuild_course_cache($course->id);
|
|
|
|
$modinfo =& get_fast_modinfo($COURSE);
|
|
|
|
debugging('Rebuilding course cache', DEBUG_DEVELOPER);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
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
|
2008-06-02 08:13:24 +00:00
|
|
|
if (! $section = $DB->get_record('course_sections', array('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;
|
2008-06-02 08:13:24 +00:00
|
|
|
$section->id = $DB->insert_record('course_sections', $section);
|
2003-05-04 09:43:03 +00:00
|
|
|
}
|
|
|
|
if (! $sections = get_all_sections($course->id) ) { // Try again
|
2008-04-26 11:02:51 +00:00
|
|
|
print_error('cannotcreateorfindstructs', 'error');
|
2002-12-22 06:45:09 +00:00
|
|
|
}
|
|
|
|
}
|
2002-07-23 16:24:12 +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.
|
2007-02-02 06:35:59 +00:00
|
|
|
echo "</div>\n\n";
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2009-07-30 06:09:45 +00:00
|
|
|
$image = new html_image();
|
|
|
|
$image->src = $OUTPUT->old_icon_url('help');
|
|
|
|
$image->add_action('click', 'confirm_dialog', array('message' => 'Are you sure?'));
|
|
|
|
echo $OUTPUT->image($image);
|
2006-10-24 08:13:13 +00:00
|
|
|
// Use AJAX?
|
2007-12-26 21:33:34 +00:00
|
|
|
if ($useajax && has_capability('moodle/course:manageactivities', $context)) {
|
2006-10-24 08:13:13 +00:00
|
|
|
// At the bottom because we want to process sections and activities
|
2007-02-02 06:35:59 +00:00
|
|
|
// after the relevant html has been generated. We're forced to do this
|
|
|
|
// because of the way in which lib/ajax/ajaxcourse.js is written.
|
2009-06-15 05:37:57 +00:00
|
|
|
$PAGE->requires->js('lib/ajax/ajaxcourse.js');
|
2007-02-02 06:35:59 +00:00
|
|
|
|
|
|
|
$COURSE->javascriptportal->print_javascript($course->id);
|
2006-10-24 08:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-06-26 09:06:16 +00:00
|
|
|
print_footer();
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2007-03-01 02:42:16 +00:00
|
|
|
?>
|