2009-11-04 08:11:02 +00:00
|
|
|
<?php
|
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');
|
2010-11-17 06:23:56 +00:00
|
|
|
require_once($CFG->libdir.'/completionlib.php');
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2005-01-28 00:02:33 +00:00
|
|
|
$id = optional_param('id', 0, PARAM_INT);
|
2016-07-05 09:50:32 +01:00
|
|
|
$name = optional_param('name', '', PARAM_TEXT);
|
2006-04-11 21:41:21 +00:00
|
|
|
$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);
|
2012-06-01 11:26:16 +08:00
|
|
|
$sectionid = optional_param('sectionid', 0, PARAM_INT);
|
2006-04-11 21:41:21 +00:00
|
|
|
$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);
|
2012-12-07 18:13:22 +01:00
|
|
|
$switchrole = optional_param('switchrole',-1, PARAM_INT); // Deprecated, use course/switchrole.php instead.
|
2012-09-13 12:30:32 +08:00
|
|
|
$return = optional_param('return', 0, PARAM_LOCALURL);
|
2006-09-21 09:16:41 +00:00
|
|
|
|
2012-04-22 10:57:41 +08:00
|
|
|
$params = array();
|
2005-01-28 00:02:33 +00:00
|
|
|
if (!empty($name)) {
|
2012-04-22 10:57:41 +08:00
|
|
|
$params = array('shortname' => $name);
|
2005-02-09 13:20:24 +00:00
|
|
|
} else if (!empty($idnumber)) {
|
2012-04-22 10:57:41 +08:00
|
|
|
$params = array('idnumber' => $idnumber);
|
|
|
|
} else if (!empty($id)) {
|
|
|
|
$params = array('id' => $id);
|
|
|
|
}else {
|
|
|
|
print_error('unspecifycourseid', 'error');
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
|
|
|
|
2012-04-22 10:57:41 +08:00
|
|
|
$course = $DB->get_record('course', $params, '*', MUST_EXIST);
|
|
|
|
|
2012-04-26 20:49:36 +08:00
|
|
|
$urlparams = array('id' => $course->id);
|
2012-06-01 11:26:16 +08:00
|
|
|
|
2012-06-06 09:05:04 +12:00
|
|
|
// Sectionid should get priority over section number
|
2012-06-01 11:26:16 +08:00
|
|
|
if ($sectionid) {
|
|
|
|
$section = $DB->get_field('course_sections', 'section', array('id' => $sectionid, 'course' => $course->id), MUST_EXIST);
|
|
|
|
}
|
2012-04-26 20:49:36 +08:00
|
|
|
if ($section) {
|
|
|
|
$urlparams['section'] = $section;
|
|
|
|
}
|
|
|
|
|
|
|
|
$PAGE->set_url('/course/view.php', $urlparams); // Defined here to avoid notices on errors etc
|
2010-05-02 09:12:18 +00:00
|
|
|
|
2012-05-17 10:09:27 +12:00
|
|
|
// Prevent caching of this page to stop confusion when changing page after making AJAX changes
|
|
|
|
$PAGE->set_cacheable(false);
|
|
|
|
|
2013-07-05 08:56:00 +08:00
|
|
|
context_helper::preload_course($course->id);
|
2012-04-22 10:57:41 +08:00
|
|
|
$context = context_course::instance($course->id, MUST_EXIST);
|
2006-09-21 09:16:41 +00:00
|
|
|
|
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
|
2012-04-22 17:41:47 +02:00
|
|
|
require_login($course);
|
2007-09-19 07:06:44 +00:00
|
|
|
}
|
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
|
2009-11-04 08:11:02 +00:00
|
|
|
//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
|
|
|
|
2014-10-06 14:10:51 -07:00
|
|
|
// Must set layout before gettting section info. See MDL-47555.
|
|
|
|
$PAGE->set_pagelayout('course');
|
|
|
|
|
2012-08-14 11:33:32 +08:00
|
|
|
if ($section and $section > 0) {
|
2012-06-21 16:24:40 +01:00
|
|
|
|
|
|
|
// Get section details and check it exists.
|
|
|
|
$modinfo = get_fast_modinfo($course);
|
|
|
|
$coursesections = $modinfo->get_section_info($section, MUST_EXIST);
|
|
|
|
|
|
|
|
// Check user is allowed to see it.
|
2012-08-22 16:37:36 +08:00
|
|
|
if (!$coursesections->uservisible) {
|
2014-06-03 09:57:23 -07:00
|
|
|
// Check if coursesection has conditions affecting availability and if
|
|
|
|
// so, output availability info.
|
|
|
|
if ($coursesections->visible && $coursesections->availableinfo) {
|
|
|
|
$sectionname = get_section_name($course, $coursesections);
|
|
|
|
$message = get_string('notavailablecourse', '', $sectionname);
|
|
|
|
redirect(course_get_url($course), $message, null, \core\output\notification::NOTIFY_ERROR);
|
|
|
|
} else {
|
|
|
|
// Note: We actually already know they don't have this capability
|
|
|
|
// or uservisible would have been true; this is just to get the
|
|
|
|
// correct error message shown.
|
|
|
|
require_capability('moodle/course:viewhiddensections', $context);
|
|
|
|
}
|
2012-06-21 16:24:40 +01:00
|
|
|
}
|
2012-05-22 14:02:48 +08:00
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
|
2013-01-11 17:08:15 +11:00
|
|
|
// Fix course format if it is no longer installed
|
|
|
|
$course->format = course_get_format($course)->get_format();
|
2004-04-18 23:20:53 +00:00
|
|
|
|
2009-05-06 09:12:03 +00:00
|
|
|
$PAGE->set_pagetype('course-view-' . $course->format);
|
2013-06-05 14:25:13 +10:00
|
|
|
$PAGE->set_other_editing_capability('moodle/course:update');
|
2009-05-06 09:02:48 +00:00
|
|
|
$PAGE->set_other_editing_capability('moodle/course:manageactivities');
|
2013-05-30 10:18:00 +10:00
|
|
|
$PAGE->set_other_editing_capability('moodle/course:activityvisibility');
|
|
|
|
if (course_format_uses_sections($course->format)) {
|
|
|
|
$PAGE->set_other_editing_capability('moodle/course:sectionvisibility');
|
|
|
|
$PAGE->set_other_editing_capability('moodle/course:movesections');
|
|
|
|
}
|
2009-05-06 09:29:05 +00:00
|
|
|
|
2013-01-11 17:08:15 +11:00
|
|
|
// Preload course format renderer before output starts.
|
|
|
|
// This is a little hacky but necessary since
|
|
|
|
// format.php is not included until after output starts
|
|
|
|
if (file_exists($CFG->dirroot.'/course/format/'.$course->format.'/renderer.php')) {
|
|
|
|
require_once($CFG->dirroot.'/course/format/'.$course->format.'/renderer.php');
|
|
|
|
if (class_exists('format_'.$course->format.'_renderer')) {
|
|
|
|
// call get_renderer only if renderer is defined in format plugin
|
|
|
|
// otherwise an exception would be thrown
|
|
|
|
$PAGE->get_renderer('format_'. $course->format);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
2011-12-15 08:23:15 +05:30
|
|
|
// Redirect to site root if Editing is toggled on frontpage
|
|
|
|
if ($course->id == SITEID) {
|
|
|
|
redirect($CFG->wwwroot .'/?redirect=0');
|
2012-09-13 12:30:32 +08:00
|
|
|
} else if (!empty($return)) {
|
|
|
|
redirect($CFG->wwwroot . $return);
|
2011-12-15 08:23:15 +05:30
|
|
|
} else {
|
2012-06-08 10:21:58 +08:00
|
|
|
$url = new moodle_url($PAGE->url, array('notifyeditingon' => 1));
|
2012-06-01 10:10:58 +01:00
|
|
|
redirect($url);
|
2011-12-15 08:23:15 +05:30
|
|
|
}
|
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
|
|
|
}
|
2011-12-15 08:23:15 +05:30
|
|
|
// Redirect to site root if Editing is toggled on frontpage
|
|
|
|
if ($course->id == SITEID) {
|
|
|
|
redirect($CFG->wwwroot .'/?redirect=0');
|
2012-09-13 12:30:32 +08:00
|
|
|
} else if (!empty($return)) {
|
|
|
|
redirect($CFG->wwwroot . $return);
|
2011-12-15 08:23:15 +05:30
|
|
|
} else {
|
|
|
|
redirect($PAGE->url);
|
|
|
|
}
|
2001-11-22 06:23:56 +00:00
|
|
|
}
|
2002-08-06 17:23:45 +00:00
|
|
|
|
2012-07-18 14:21:16 +08:00
|
|
|
if (has_capability('moodle/course:sectionvisibility', $context)) {
|
2011-12-18 11:54:02 +01:00
|
|
|
if ($hide && confirm_sesskey()) {
|
|
|
|
set_section_visible($course->id, $hide, '0');
|
2012-04-28 13:47:02 +08:00
|
|
|
redirect($PAGE->url);
|
2011-12-18 11:54:02 +01:00
|
|
|
}
|
2003-05-04 07:59:46 +00:00
|
|
|
|
2011-12-18 11:54:02 +01:00
|
|
|
if ($show && confirm_sesskey()) {
|
|
|
|
set_section_visible($course->id, $show, '1');
|
2012-04-28 13:47:02 +08:00
|
|
|
redirect($PAGE->url);
|
2011-12-18 11:54:02 +01:00
|
|
|
}
|
2012-07-18 14:21:16 +08:00
|
|
|
}
|
2003-06-10 15:27:09 +00:00
|
|
|
|
2013-06-05 14:25:13 +10:00
|
|
|
if (!empty($section) && !empty($move) &&
|
|
|
|
has_capability('moodle/course:movesections', $context) && confirm_sesskey()) {
|
|
|
|
$destsection = $section + $move;
|
|
|
|
if (move_section_to($course, $section, $destsection)) {
|
|
|
|
if ($course->id == SITEID) {
|
|
|
|
redirect($CFG->wwwroot . '/?redirect=0');
|
|
|
|
} else {
|
|
|
|
redirect(course_get_url($course));
|
2003-08-21 15:06:32 +00:00
|
|
|
}
|
2013-06-05 14:25:13 +10:00
|
|
|
} else {
|
|
|
|
echo $OUTPUT->notification('An error occurred while moving a section');
|
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
|
|
|
}
|
|
|
|
|
2012-04-26 20:49:36 +08:00
|
|
|
$SESSION->fromdiscussion = $PAGE->url->out(false);
|
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 07:35:41 +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);
|
2014-02-10 15:17:46 +08:00
|
|
|
if ($completion->is_enabled()) {
|
2010-02-04 22:41:49 +00:00
|
|
|
$PAGE->requires->string_for_js('completion-alt-manual-y', 'completion');
|
|
|
|
$PAGE->requires->string_for_js('completion-alt-manual-n', 'completion');
|
|
|
|
|
|
|
|
$PAGE->requires->js_init_call('M.core_completion.init');
|
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
|
|
|
}
|
|
|
|
|
2010-08-03 11:00:02 +00:00
|
|
|
// We are currently keeping the button here from 1.x to help new teachers figure out
|
|
|
|
// what to do, even though the link also appears in the course admin block. It also
|
2010-04-29 09:32:15 +00:00
|
|
|
// means you can back out of a situation where you removed the admin block. :)
|
2009-05-06 09:19:46 +00:00
|
|
|
if ($PAGE->user_allowed_editing()) {
|
2012-04-30 11:23:37 +08:00
|
|
|
$buttons = $OUTPUT->edit_button($PAGE->url);
|
2010-04-29 09:32:15 +00:00
|
|
|
$PAGE->set_button($buttons);
|
2009-05-06 09:19:46 +00:00
|
|
|
}
|
|
|
|
|
2013-12-11 16:03:27 +08:00
|
|
|
// If viewing a section, make the title more specific
|
|
|
|
if ($section and $section > 0 and course_format_uses_sections($course->format)) {
|
|
|
|
$sectionname = get_string('sectionname', "format_$course->format");
|
|
|
|
$sectiontitle = get_section_name($course, $section);
|
|
|
|
$PAGE->set_title(get_string('coursesectiontitle', 'moodle', array('course' => $course->fullname, 'sectiontitle' => $sectiontitle, 'sectionname' => $sectionname)));
|
|
|
|
} else {
|
|
|
|
$PAGE->set_title(get_string('coursetitle', 'moodle', array('course' => $course->fullname)));
|
|
|
|
}
|
|
|
|
|
2009-09-03 08:47:24 +00:00
|
|
|
$PAGE->set_heading($course->fullname);
|
|
|
|
echo $OUTPUT->header();
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2019-04-10 09:05:58 +10:00
|
|
|
if ($USER->editing == 1 && !empty($CFG->enableasyncbackup)) {
|
|
|
|
|
|
|
|
// MDL-65321 The backup libraries are quite heavy, only require the bare minimum.
|
|
|
|
require_once($CFG->dirroot . '/backup/util/helper/async_helper.class.php');
|
|
|
|
|
|
|
|
if (async_helper::is_async_pending($id, 'course', 'backup')) {
|
|
|
|
echo $OUTPUT->notification(get_string('pendingasyncedit', 'backup'), 'warning');
|
|
|
|
}
|
|
|
|
}
|
2018-12-20 15:32:46 +11:00
|
|
|
|
2014-02-10 15:17:46 +08:00
|
|
|
if ($completion->is_enabled()) {
|
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.
|
2010-08-30 01:32:45 +00:00
|
|
|
echo html_writer::start_tag('form', array('action'=>'.', 'method'=>'get'));
|
|
|
|
echo html_writer::start_tag('div');
|
|
|
|
echo html_writer::empty_tag('input', array('type'=>'hidden', 'id'=>'completion_dynamic_change', 'name'=>'completion_dynamic_change', 'value'=>'0'));
|
|
|
|
echo html_writer::end_tag('div');
|
|
|
|
echo html_writer::end_tag('form');
|
2008-07-28 12:31:29 +00:00
|
|
|
}
|
|
|
|
|
2006-10-24 08:13:13 +00:00
|
|
|
// Course wrapper start.
|
2010-08-30 01:32:45 +00:00
|
|
|
echo html_writer::start_tag('div', array('class'=>'course-content'));
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2012-09-25 10:34:18 +08:00
|
|
|
// make sure that section 0 exists (this function will create one if it is missing)
|
2012-10-08 10:36:01 +08:00
|
|
|
course_create_sections_if_missing($course, 0);
|
2012-09-25 10:34:18 +08:00
|
|
|
|
|
|
|
// get information about course modules and existing module types
|
|
|
|
// format.php in course formats may rely on presence of these variables
|
|
|
|
$modinfo = get_fast_modinfo($course);
|
|
|
|
$modnames = get_module_types_names();
|
|
|
|
$modnamesplural = get_module_types_names(true);
|
|
|
|
$modnamesused = $modinfo->get_used_module_names();
|
|
|
|
$mods = $modinfo->get_cms();
|
|
|
|
$sections = $modinfo->get_section_info_all();
|
2002-07-23 16:24:12 +00:00
|
|
|
|
2012-04-26 20:49:36 +08:00
|
|
|
// CAUTION, hacky fundamental variable defintion to follow!
|
|
|
|
// Note that because of the way course fromats are constructed though
|
|
|
|
// inclusion we pass parameters around this way..
|
|
|
|
$displaysection = $section;
|
|
|
|
|
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.
|
2010-08-30 01:32:45 +00:00
|
|
|
|
|
|
|
echo html_writer::end_tag('div');
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2014-04-03 14:21:00 +08:00
|
|
|
// Trigger course viewed event.
|
2014-04-24 09:30:14 +12:00
|
|
|
// We don't trust $context here. Course format inclusion above executes in the global space. We can't assume
|
|
|
|
// anything after that point.
|
2015-03-26 12:39:55 +01:00
|
|
|
course_view(context_course::instance($course->id), $section);
|
2014-04-03 14:21:00 +08:00
|
|
|
|
2011-11-25 10:20:34 +00:00
|
|
|
// Include course AJAX
|
2012-12-12 13:46:01 +08:00
|
|
|
include_course_ajax($course, $modnamesused);
|
2006-10-24 08:13:13 +00:00
|
|
|
|
2009-08-06 14:10:33 +00:00
|
|
|
echo $OUTPUT->footer();
|