MDL-55188 events: First deprecation of eventslib.php
[moodle.git] / course / lib.php
blob69cbc899cff3503ea3dd0b98e8bf2cf633edf563
1 <?php
2 // This file is part of Moodle - http://moodle.org/
3 //
4 // Moodle is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // Moodle is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
17 /**
18 * Library of useful functions
20 * @copyright 1999 Martin Dougiamas http://dougiamas.com
21 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
22 * @package core_course
25 defined('MOODLE_INTERNAL') || die;
27 require_once($CFG->libdir.'/completionlib.php');
28 require_once($CFG->libdir.'/filelib.php');
29 require_once($CFG->dirroot.'/course/format/lib.php');
31 define('COURSE_MAX_LOGS_PER_PAGE', 1000); // Records.
32 define('COURSE_MAX_RECENT_PERIOD', 172800); // Two days, in seconds.
34 /**
35 * Number of courses to display when summaries are included.
36 * @var int
37 * @deprecated since 2.4, use $CFG->courseswithsummarieslimit instead.
39 define('COURSE_MAX_SUMMARIES_PER_PAGE', 10);
41 // Max courses in log dropdown before switching to optional.
42 define('COURSE_MAX_COURSES_PER_DROPDOWN', 1000);
43 // Max users in log dropdown before switching to optional.
44 define('COURSE_MAX_USERS_PER_DROPDOWN', 1000);
45 define('FRONTPAGENEWS', '0');
46 define('FRONTPAGECATEGORYNAMES', '2');
47 define('FRONTPAGECATEGORYCOMBO', '4');
48 define('FRONTPAGEENROLLEDCOURSELIST', '5');
49 define('FRONTPAGEALLCOURSELIST', '6');
50 define('FRONTPAGECOURSESEARCH', '7');
51 // Important! Replaced with $CFG->frontpagecourselimit - maximum number of courses displayed on the frontpage.
52 define('EXCELROWS', 65535);
53 define('FIRSTUSEDEXCELROW', 3);
55 define('MOD_CLASS_ACTIVITY', 0);
56 define('MOD_CLASS_RESOURCE', 1);
58 define('COURSE_TIMELINE_PAST', 'past');
59 define('COURSE_TIMELINE_INPROGRESS', 'inprogress');
60 define('COURSE_TIMELINE_FUTURE', 'future');
62 function make_log_url($module, $url) {
63 switch ($module) {
64 case 'course':
65 if (strpos($url, 'report/') === 0) {
66 // there is only one report type, course reports are deprecated
67 $url = "/$url";
68 break;
70 case 'file':
71 case 'login':
72 case 'lib':
73 case 'admin':
74 case 'category':
75 case 'mnet course':
76 if (strpos($url, '../') === 0) {
77 $url = ltrim($url, '.');
78 } else {
79 $url = "/course/$url";
81 break;
82 case 'calendar':
83 $url = "/calendar/$url";
84 break;
85 case 'user':
86 case 'blog':
87 $url = "/$module/$url";
88 break;
89 case 'upload':
90 $url = $url;
91 break;
92 case 'coursetags':
93 $url = '/'.$url;
94 break;
95 case 'library':
96 case '':
97 $url = '/';
98 break;
99 case 'message':
100 $url = "/message/$url";
101 break;
102 case 'notes':
103 $url = "/notes/$url";
104 break;
105 case 'tag':
106 $url = "/tag/$url";
107 break;
108 case 'role':
109 $url = '/'.$url;
110 break;
111 case 'grade':
112 $url = "/grade/$url";
113 break;
114 default:
115 $url = "/mod/$module/$url";
116 break;
119 //now let's sanitise urls - there might be some ugly nasties:-(
120 $parts = explode('?', $url);
121 $script = array_shift($parts);
122 if (strpos($script, 'http') === 0) {
123 $script = clean_param($script, PARAM_URL);
124 } else {
125 $script = clean_param($script, PARAM_PATH);
128 $query = '';
129 if ($parts) {
130 $query = implode('', $parts);
131 $query = str_replace('&amp;', '&', $query); // both & and &amp; are stored in db :-|
132 $parts = explode('&', $query);
133 $eq = urlencode('=');
134 foreach ($parts as $key=>$part) {
135 $part = urlencode(urldecode($part));
136 $part = str_replace($eq, '=', $part);
137 $parts[$key] = $part;
139 $query = '?'.implode('&amp;', $parts);
142 return $script.$query;
146 function build_mnet_logs_array($hostid, $course, $user=0, $date=0, $order="l.time ASC", $limitfrom='', $limitnum='',
147 $modname="", $modid=0, $modaction="", $groupid=0) {
148 global $CFG, $DB;
150 // It is assumed that $date is the GMT time of midnight for that day,
151 // and so the next 86400 seconds worth of logs are printed.
153 /// Setup for group handling.
155 // TODO: I don't understand group/context/etc. enough to be able to do
156 // something interesting with it here
157 // What is the context of a remote course?
159 /// If the group mode is separate, and this user does not have editing privileges,
160 /// then only the user's group can be viewed.
161 //if ($course->groupmode == SEPARATEGROUPS and !has_capability('moodle/course:managegroups', context_course::instance($course->id))) {
162 // $groupid = get_current_group($course->id);
164 /// If this course doesn't have groups, no groupid can be specified.
165 //else if (!$course->groupmode) {
166 // $groupid = 0;
169 $groupid = 0;
171 $joins = array();
172 $where = '';
174 $qry = "SELECT l.*, u.firstname, u.lastname, u.picture
175 FROM {mnet_log} l
176 LEFT JOIN {user} u ON l.userid = u.id
177 WHERE ";
178 $params = array();
180 $where .= "l.hostid = :hostid";
181 $params['hostid'] = $hostid;
183 // TODO: Is 1 really a magic number referring to the sitename?
184 if ($course != SITEID || $modid != 0) {
185 $where .= " AND l.course=:courseid";
186 $params['courseid'] = $course;
189 if ($modname) {
190 $where .= " AND l.module = :modname";
191 $params['modname'] = $modname;
194 if ('site_errors' === $modid) {
195 $where .= " AND ( l.action='error' OR l.action='infected' )";
196 } else if ($modid) {
197 //TODO: This assumes that modids are the same across sites... probably
198 //not true
199 $where .= " AND l.cmid = :modid";
200 $params['modid'] = $modid;
203 if ($modaction) {
204 $firstletter = substr($modaction, 0, 1);
205 if ($firstletter == '-') {
206 $where .= " AND ".$DB->sql_like('l.action', ':modaction', false, true, true);
207 $params['modaction'] = '%'.substr($modaction, 1).'%';
208 } else {
209 $where .= " AND ".$DB->sql_like('l.action', ':modaction', false);
210 $params['modaction'] = '%'.$modaction.'%';
214 if ($user) {
215 $where .= " AND l.userid = :user";
216 $params['user'] = $user;
219 if ($date) {
220 $enddate = $date + 86400;
221 $where .= " AND l.time > :date AND l.time < :enddate";
222 $params['date'] = $date;
223 $params['enddate'] = $enddate;
226 $result = array();
227 $result['totalcount'] = $DB->count_records_sql("SELECT COUNT('x') FROM {mnet_log} l WHERE $where", $params);
228 if(!empty($result['totalcount'])) {
229 $where .= " ORDER BY $order";
230 $result['logs'] = $DB->get_records_sql("$qry $where", $params, $limitfrom, $limitnum);
231 } else {
232 $result['logs'] = array();
234 return $result;
238 * Checks the integrity of the course data.
240 * In summary - compares course_sections.sequence and course_modules.section.
242 * More detailed, checks that:
243 * - course_sections.sequence contains each module id not more than once in the course
244 * - for each moduleid from course_sections.sequence the field course_modules.section
245 * refers to the same section id (this means course_sections.sequence is more
246 * important if they are different)
247 * - ($fullcheck only) each module in the course is present in one of
248 * course_sections.sequence
249 * - ($fullcheck only) removes non-existing course modules from section sequences
251 * If there are any mismatches, the changes are made and records are updated in DB.
253 * Course cache is NOT rebuilt if there are any errors!
255 * This function is used each time when course cache is being rebuilt with $fullcheck = false
256 * and in CLI script admin/cli/fix_course_sequence.php with $fullcheck = true
258 * @param int $courseid id of the course
259 * @param array $rawmods result of funciton {@link get_course_mods()} - containst
260 * the list of enabled course modules in the course. Retrieved from DB if not specified.
261 * Argument ignored in cashe of $fullcheck, the list is retrieved form DB anyway.
262 * @param array $sections records from course_sections table for this course.
263 * Retrieved from DB if not specified
264 * @param bool $fullcheck Will add orphaned modules to their sections and remove non-existing
265 * course modules from sequences. Only to be used in site maintenance mode when we are
266 * sure that another user is not in the middle of the process of moving/removing a module.
267 * @param bool $checkonly Only performs the check without updating DB, outputs all errors as debug messages.
268 * @return array array of messages with found problems. Empty output means everything is ok
270 function course_integrity_check($courseid, $rawmods = null, $sections = null, $fullcheck = false, $checkonly = false) {
271 global $DB;
272 $messages = array();
273 if ($sections === null) {
274 $sections = $DB->get_records('course_sections', array('course' => $courseid), 'section', 'id,section,sequence');
276 if ($fullcheck) {
277 // Retrieve all records from course_modules regardless of module type visibility.
278 $rawmods = $DB->get_records('course_modules', array('course' => $courseid), 'id', 'id,section');
280 if ($rawmods === null) {
281 $rawmods = get_course_mods($courseid);
283 if (!$fullcheck && (empty($sections) || empty($rawmods))) {
284 // If either of the arrays is empty, no modules are displayed anyway.
285 return true;
287 $debuggingprefix = 'Failed integrity check for course ['.$courseid.']. ';
289 // First make sure that each module id appears in section sequences only once.
290 // If it appears in several section sequences the last section wins.
291 // If it appears twice in one section sequence, the first occurence wins.
292 $modsection = array();
293 foreach ($sections as $sectionid => $section) {
294 $sections[$sectionid]->newsequence = $section->sequence;
295 if (!empty($section->sequence)) {
296 $sequence = explode(",", $section->sequence);
297 $sequenceunique = array_unique($sequence);
298 if (count($sequenceunique) != count($sequence)) {
299 // Some course module id appears in this section sequence more than once.
300 ksort($sequenceunique); // Preserve initial order of modules.
301 $sequence = array_values($sequenceunique);
302 $sections[$sectionid]->newsequence = join(',', $sequence);
303 $messages[] = $debuggingprefix.'Sequence for course section ['.
304 $sectionid.'] is "'.$sections[$sectionid]->sequence.'", must be "'.$sections[$sectionid]->newsequence.'"';
306 foreach ($sequence as $cmid) {
307 if (array_key_exists($cmid, $modsection) && isset($rawmods[$cmid])) {
308 // Some course module id appears to be in more than one section's sequences.
309 $wrongsectionid = $modsection[$cmid];
310 $sections[$wrongsectionid]->newsequence = trim(preg_replace("/,$cmid,/", ',', ','.$sections[$wrongsectionid]->newsequence. ','), ',');
311 $messages[] = $debuggingprefix.'Course module ['.$cmid.'] must be removed from sequence of section ['.
312 $wrongsectionid.'] because it is also present in sequence of section ['.$sectionid.']';
314 $modsection[$cmid] = $sectionid;
319 // Add orphaned modules to their sections if they exist or to section 0 otherwise.
320 if ($fullcheck) {
321 foreach ($rawmods as $cmid => $mod) {
322 if (!isset($modsection[$cmid])) {
323 // This is a module that is not mentioned in course_section.sequence at all.
324 // Add it to the section $mod->section or to the last available section.
325 if ($mod->section && isset($sections[$mod->section])) {
326 $modsection[$cmid] = $mod->section;
327 } else {
328 $firstsection = reset($sections);
329 $modsection[$cmid] = $firstsection->id;
331 $sections[$modsection[$cmid]]->newsequence = trim($sections[$modsection[$cmid]]->newsequence.','.$cmid, ',');
332 $messages[] = $debuggingprefix.'Course module ['.$cmid.'] is missing from sequence of section ['.
333 $modsection[$cmid].']';
336 foreach ($modsection as $cmid => $sectionid) {
337 if (!isset($rawmods[$cmid])) {
338 // Section $sectionid refers to module id that does not exist.
339 $sections[$sectionid]->newsequence = trim(preg_replace("/,$cmid,/", ',', ','.$sections[$sectionid]->newsequence.','), ',');
340 $messages[] = $debuggingprefix.'Course module ['.$cmid.
341 '] does not exist but is present in the sequence of section ['.$sectionid.']';
346 // Update changed sections.
347 if (!$checkonly && !empty($messages)) {
348 foreach ($sections as $sectionid => $section) {
349 if ($section->newsequence !== $section->sequence) {
350 $DB->update_record('course_sections', array('id' => $sectionid, 'sequence' => $section->newsequence));
355 // Now make sure that all modules point to the correct sections.
356 foreach ($rawmods as $cmid => $mod) {
357 if (isset($modsection[$cmid]) && $modsection[$cmid] != $mod->section) {
358 if (!$checkonly) {
359 $DB->update_record('course_modules', array('id' => $cmid, 'section' => $modsection[$cmid]));
361 $messages[] = $debuggingprefix.'Course module ['.$cmid.
362 '] points to section ['.$mod->section.'] instead of ['.$modsection[$cmid].']';
366 return $messages;
370 * For a given course, returns an array of course activity objects
371 * Each item in the array contains he following properties:
373 function get_array_of_activities($courseid) {
374 // cm - course module id
375 // mod - name of the module (eg forum)
376 // section - the number of the section (eg week or topic)
377 // name - the name of the instance
378 // visible - is the instance visible or not
379 // groupingid - grouping id
380 // extra - contains extra string to include in any link
381 global $CFG, $DB;
383 $course = $DB->get_record('course', array('id'=>$courseid));
385 if (empty($course)) {
386 throw new moodle_exception('courseidnotfound');
389 $mod = array();
391 $rawmods = get_course_mods($courseid);
392 if (empty($rawmods)) {
393 return $mod; // always return array
395 $courseformat = course_get_format($course);
397 if ($sections = $DB->get_records('course_sections', array('course' => $courseid),
398 'section ASC', 'id,section,sequence,visible')) {
399 // First check and correct obvious mismatches between course_sections.sequence and course_modules.section.
400 if ($errormessages = course_integrity_check($courseid, $rawmods, $sections)) {
401 debugging(join('<br>', $errormessages));
402 $rawmods = get_course_mods($courseid);
403 $sections = $DB->get_records('course_sections', array('course' => $courseid),
404 'section ASC', 'id,section,sequence,visible');
406 // Build array of activities.
407 foreach ($sections as $section) {
408 if (!empty($section->sequence)) {
409 $sequence = explode(",", $section->sequence);
410 foreach ($sequence as $seq) {
411 if (empty($rawmods[$seq])) {
412 continue;
414 // Adjust visibleoncoursepage, value in DB may not respect format availability.
415 $rawmods[$seq]->visibleoncoursepage = (!$rawmods[$seq]->visible
416 || $rawmods[$seq]->visibleoncoursepage
417 || empty($CFG->allowstealth)
418 || !$courseformat->allow_stealth_module_visibility($rawmods[$seq], $section)) ? 1 : 0;
420 // Create an object that will be cached.
421 $mod[$seq] = new stdClass();
422 $mod[$seq]->id = $rawmods[$seq]->instance;
423 $mod[$seq]->cm = $rawmods[$seq]->id;
424 $mod[$seq]->mod = $rawmods[$seq]->modname;
426 // Oh dear. Inconsistent names left here for backward compatibility.
427 $mod[$seq]->section = $section->section;
428 $mod[$seq]->sectionid = $rawmods[$seq]->section;
430 $mod[$seq]->module = $rawmods[$seq]->module;
431 $mod[$seq]->added = $rawmods[$seq]->added;
432 $mod[$seq]->score = $rawmods[$seq]->score;
433 $mod[$seq]->idnumber = $rawmods[$seq]->idnumber;
434 $mod[$seq]->visible = $rawmods[$seq]->visible;
435 $mod[$seq]->visibleoncoursepage = $rawmods[$seq]->visibleoncoursepage;
436 $mod[$seq]->visibleold = $rawmods[$seq]->visibleold;
437 $mod[$seq]->groupmode = $rawmods[$seq]->groupmode;
438 $mod[$seq]->groupingid = $rawmods[$seq]->groupingid;
439 $mod[$seq]->indent = $rawmods[$seq]->indent;
440 $mod[$seq]->completion = $rawmods[$seq]->completion;
441 $mod[$seq]->extra = "";
442 $mod[$seq]->completiongradeitemnumber =
443 $rawmods[$seq]->completiongradeitemnumber;
444 $mod[$seq]->completionview = $rawmods[$seq]->completionview;
445 $mod[$seq]->completionexpected = $rawmods[$seq]->completionexpected;
446 $mod[$seq]->showdescription = $rawmods[$seq]->showdescription;
447 $mod[$seq]->availability = $rawmods[$seq]->availability;
448 $mod[$seq]->deletioninprogress = $rawmods[$seq]->deletioninprogress;
450 $modname = $mod[$seq]->mod;
451 $functionname = $modname."_get_coursemodule_info";
453 if (!file_exists("$CFG->dirroot/mod/$modname/lib.php")) {
454 continue;
457 include_once("$CFG->dirroot/mod/$modname/lib.php");
459 if ($hasfunction = function_exists($functionname)) {
460 if ($info = $functionname($rawmods[$seq])) {
461 if (!empty($info->icon)) {
462 $mod[$seq]->icon = $info->icon;
464 if (!empty($info->iconcomponent)) {
465 $mod[$seq]->iconcomponent = $info->iconcomponent;
467 if (!empty($info->name)) {
468 $mod[$seq]->name = $info->name;
470 if ($info instanceof cached_cm_info) {
471 // When using cached_cm_info you can include three new fields
472 // that aren't available for legacy code
473 if (!empty($info->content)) {
474 $mod[$seq]->content = $info->content;
476 if (!empty($info->extraclasses)) {
477 $mod[$seq]->extraclasses = $info->extraclasses;
479 if (!empty($info->iconurl)) {
480 // Convert URL to string as it's easier to store. Also serialized object contains \0 byte and can not be written to Postgres DB.
481 $url = new moodle_url($info->iconurl);
482 $mod[$seq]->iconurl = $url->out(false);
484 if (!empty($info->onclick)) {
485 $mod[$seq]->onclick = $info->onclick;
487 if (!empty($info->customdata)) {
488 $mod[$seq]->customdata = $info->customdata;
490 } else {
491 // When using a stdclass, the (horrible) deprecated ->extra field
492 // is available for BC
493 if (!empty($info->extra)) {
494 $mod[$seq]->extra = $info->extra;
499 // When there is no modname_get_coursemodule_info function,
500 // but showdescriptions is enabled, then we use the 'intro'
501 // and 'introformat' fields in the module table
502 if (!$hasfunction && $rawmods[$seq]->showdescription) {
503 if ($modvalues = $DB->get_record($rawmods[$seq]->modname,
504 array('id' => $rawmods[$seq]->instance), 'name, intro, introformat')) {
505 // Set content from intro and introformat. Filters are disabled
506 // because we filter it with format_text at display time
507 $mod[$seq]->content = format_module_intro($rawmods[$seq]->modname,
508 $modvalues, $rawmods[$seq]->id, false);
510 // To save making another query just below, put name in here
511 $mod[$seq]->name = $modvalues->name;
514 if (!isset($mod[$seq]->name)) {
515 $mod[$seq]->name = $DB->get_field($rawmods[$seq]->modname, "name", array("id"=>$rawmods[$seq]->instance));
518 // Minimise the database size by unsetting default options when they are
519 // 'empty'. This list corresponds to code in the cm_info constructor.
520 foreach (array('idnumber', 'groupmode', 'groupingid',
521 'indent', 'completion', 'extra', 'extraclasses', 'iconurl', 'onclick', 'content',
522 'icon', 'iconcomponent', 'customdata', 'availability', 'completionview',
523 'completionexpected', 'score', 'showdescription', 'deletioninprogress') as $property) {
524 if (property_exists($mod[$seq], $property) &&
525 empty($mod[$seq]->{$property})) {
526 unset($mod[$seq]->{$property});
529 // Special case: this value is usually set to null, but may be 0
530 if (property_exists($mod[$seq], 'completiongradeitemnumber') &&
531 is_null($mod[$seq]->completiongradeitemnumber)) {
532 unset($mod[$seq]->completiongradeitemnumber);
538 return $mod;
542 * Returns the localised human-readable names of all used modules
544 * @param bool $plural if true returns the plural forms of the names
545 * @return array where key is the module name (component name without 'mod_') and
546 * the value is the human-readable string. Array sorted alphabetically by value
548 function get_module_types_names($plural = false) {
549 static $modnames = null;
550 global $DB, $CFG;
551 if ($modnames === null) {
552 $modnames = array(0 => array(), 1 => array());
553 if ($allmods = $DB->get_records("modules")) {
554 foreach ($allmods as $mod) {
555 if (file_exists("$CFG->dirroot/mod/$mod->name/lib.php") && $mod->visible) {
556 $modnames[0][$mod->name] = get_string("modulename", "$mod->name");
557 $modnames[1][$mod->name] = get_string("modulenameplural", "$mod->name");
560 core_collator::asort($modnames[0]);
561 core_collator::asort($modnames[1]);
564 return $modnames[(int)$plural];
568 * Set highlighted section. Only one section can be highlighted at the time.
570 * @param int $courseid course id
571 * @param int $marker highlight section with this number, 0 means remove higlightin
572 * @return void
574 function course_set_marker($courseid, $marker) {
575 global $DB, $COURSE;
576 $DB->set_field("course", "marker", $marker, array('id' => $courseid));
577 if ($COURSE && $COURSE->id == $courseid) {
578 $COURSE->marker = $marker;
580 if (class_exists('format_base')) {
581 format_base::reset_course_cache($courseid);
583 course_modinfo::clear_instance_cache($courseid);
587 * For a given course section, marks it visible or hidden,
588 * and does the same for every activity in that section
590 * @param int $courseid course id
591 * @param int $sectionnumber The section number to adjust
592 * @param int $visibility The new visibility
593 * @return array A list of resources which were hidden in the section
595 function set_section_visible($courseid, $sectionnumber, $visibility) {
596 global $DB;
598 $resourcestotoggle = array();
599 if ($section = $DB->get_record("course_sections", array("course"=>$courseid, "section"=>$sectionnumber))) {
600 course_update_section($courseid, $section, array('visible' => $visibility));
602 // Determine which modules are visible for AJAX update
603 $modules = !empty($section->sequence) ? explode(',', $section->sequence) : array();
604 if (!empty($modules)) {
605 list($insql, $params) = $DB->get_in_or_equal($modules);
606 $select = 'id ' . $insql . ' AND visible = ?';
607 array_push($params, $visibility);
608 if (!$visibility) {
609 $select .= ' AND visibleold = 1';
611 $resourcestotoggle = $DB->get_fieldset_select('course_modules', 'id', $select, $params);
614 return $resourcestotoggle;
618 * Retrieve all metadata for the requested modules
620 * @param object $course The Course
621 * @param array $modnames An array containing the list of modules and their
622 * names
623 * @param int $sectionreturn The section to return to
624 * @return array A list of stdClass objects containing metadata about each
625 * module
627 function get_module_metadata($course, $modnames, $sectionreturn = null) {
628 global $OUTPUT;
630 // get_module_metadata will be called once per section on the page and courses may show
631 // different modules to one another
632 static $modlist = array();
633 if (!isset($modlist[$course->id])) {
634 $modlist[$course->id] = array();
637 $return = array();
638 $urlbase = new moodle_url('/course/mod.php', array('id' => $course->id, 'sesskey' => sesskey()));
639 if ($sectionreturn !== null) {
640 $urlbase->param('sr', $sectionreturn);
642 foreach($modnames as $modname => $modnamestr) {
643 if (!course_allowed_module($course, $modname)) {
644 continue;
646 if (isset($modlist[$course->id][$modname])) {
647 // This module is already cached
648 $return += $modlist[$course->id][$modname];
649 continue;
651 $modlist[$course->id][$modname] = array();
653 // Create an object for a default representation of this module type in the activity chooser. It will be used
654 // if module does not implement callback get_shortcuts() and it will also be passed to the callback if it exists.
655 $defaultmodule = new stdClass();
656 $defaultmodule->title = $modnamestr;
657 $defaultmodule->name = $modname;
658 $defaultmodule->link = new moodle_url($urlbase, array('add' => $modname));
659 $defaultmodule->icon = $OUTPUT->pix_icon('icon', '', $defaultmodule->name, array('class' => 'icon'));
660 $sm = get_string_manager();
661 if ($sm->string_exists('modulename_help', $modname)) {
662 $defaultmodule->help = get_string('modulename_help', $modname);
663 if ($sm->string_exists('modulename_link', $modname)) { // Link to further info in Moodle docs.
664 $link = get_string('modulename_link', $modname);
665 $linktext = get_string('morehelp');
666 $defaultmodule->help .= html_writer::tag('div',
667 $OUTPUT->doc_link($link, $linktext, true), array('class' => 'helpdoclink'));
670 $defaultmodule->archetype = plugin_supports('mod', $modname, FEATURE_MOD_ARCHETYPE, MOD_ARCHETYPE_OTHER);
672 // Each module can implement callback modulename_get_shortcuts() in its lib.php and return the list
673 // of elements to be added to activity chooser.
674 $items = component_callback($modname, 'get_shortcuts', array($defaultmodule), null);
675 if ($items !== null) {
676 foreach ($items as $item) {
677 // Add all items to the return array. All items must have different links, use them as a key in the return array.
678 if (!isset($item->archetype)) {
679 $item->archetype = $defaultmodule->archetype;
681 if (!isset($item->icon)) {
682 $item->icon = $defaultmodule->icon;
684 // If plugin returned the only one item with the same link as default item - cache it as $modname,
685 // otherwise append the link url to the module name.
686 $item->name = (count($items) == 1 &&
687 $item->link->out() === $defaultmodule->link->out()) ? $modname : $modname . ':' . $item->link;
689 // If the module provides the helptext property, append it to the help text to match the look and feel
690 // of the default course modules.
691 if (isset($item->help) && isset($item->helplink)) {
692 $linktext = get_string('morehelp');
693 $item->help .= html_writer::tag('div',
694 $OUTPUT->doc_link($item->helplink, $linktext, true), array('class' => 'helpdoclink'));
696 $modlist[$course->id][$modname][$item->name] = $item;
698 $return += $modlist[$course->id][$modname];
699 // If get_shortcuts() callback is defined, the default module action is not added.
700 // It is a responsibility of the callback to add it to the return value unless it is not needed.
701 continue;
704 // The callback get_shortcuts() was not found, use the default item for the activity chooser.
705 $modlist[$course->id][$modname][$modname] = $defaultmodule;
706 $return[$modname] = $defaultmodule;
709 core_collator::asort_objects_by_property($return, 'title');
710 return $return;
714 * Return the course category context for the category with id $categoryid, except
715 * that if $categoryid is 0, return the system context.
717 * @param integer $categoryid a category id or 0.
718 * @return context the corresponding context
720 function get_category_or_system_context($categoryid) {
721 if ($categoryid) {
722 return context_coursecat::instance($categoryid, IGNORE_MISSING);
723 } else {
724 return context_system::instance();
729 * Returns full course categories trees to be used in html_writer::select()
731 * Calls {@link coursecat::make_categories_list()} to build the tree and
732 * adds whitespace to denote nesting
734 * @return array array mapping coursecat id to the display name
736 function make_categories_options() {
737 global $CFG;
738 require_once($CFG->libdir. '/coursecatlib.php');
739 $cats = coursecat::make_categories_list('', 0, ' / ');
740 foreach ($cats as $key => $value) {
741 // Prefix the value with the number of spaces equal to category depth (number of separators in the value).
742 $cats[$key] = str_repeat('&nbsp;', substr_count($value, ' / ')). $value;
744 return $cats;
748 * Print the buttons relating to course requests.
750 * @param object $context current page context.
752 function print_course_request_buttons($context) {
753 global $CFG, $DB, $OUTPUT;
754 if (empty($CFG->enablecourserequests)) {
755 return;
757 if (!has_capability('moodle/course:create', $context) && has_capability('moodle/course:request', $context)) {
758 /// Print a button to request a new course
759 echo $OUTPUT->single_button(new moodle_url('/course/request.php'), get_string('requestcourse'), 'get');
761 /// Print a button to manage pending requests
762 if ($context->contextlevel == CONTEXT_SYSTEM && has_capability('moodle/site:approvecourse', $context)) {
763 $disabled = !$DB->record_exists('course_request', array());
764 echo $OUTPUT->single_button(new moodle_url('/course/pending.php'), get_string('coursespending'), 'get', array('disabled' => $disabled));
769 * Does the user have permission to edit things in this category?
771 * @param integer $categoryid The id of the category we are showing, or 0 for system context.
772 * @return boolean has_any_capability(array(...), ...); in the appropriate context.
774 function can_edit_in_category($categoryid = 0) {
775 $context = get_category_or_system_context($categoryid);
776 return has_any_capability(array('moodle/category:manage', 'moodle/course:create'), $context);
779 /// MODULE FUNCTIONS /////////////////////////////////////////////////////////////////
781 function add_course_module($mod) {
782 global $DB;
784 $mod->added = time();
785 unset($mod->id);
787 $cmid = $DB->insert_record("course_modules", $mod);
788 rebuild_course_cache($mod->course, true);
789 return $cmid;
793 * Creates a course section and adds it to the specified position
795 * @param int|stdClass $courseorid course id or course object
796 * @param int $position position to add to, 0 means to the end. If position is greater than
797 * number of existing secitons, the section is added to the end. This will become sectionnum of the
798 * new section. All existing sections at this or bigger position will be shifted down.
799 * @param bool $skipcheck the check has already been made and we know that the section with this position does not exist
800 * @return stdClass created section object
802 function course_create_section($courseorid, $position = 0, $skipcheck = false) {
803 global $DB;
804 $courseid = is_object($courseorid) ? $courseorid->id : $courseorid;
806 // Find the last sectionnum among existing sections.
807 if ($skipcheck) {
808 $lastsection = $position - 1;
809 } else {
810 $lastsection = (int)$DB->get_field_sql('SELECT max(section) from {course_sections} WHERE course = ?', [$courseid]);
813 // First add section to the end.
814 $cw = new stdClass();
815 $cw->course = $courseid;
816 $cw->section = $lastsection + 1;
817 $cw->summary = '';
818 $cw->summaryformat = FORMAT_HTML;
819 $cw->sequence = '';
820 $cw->name = null;
821 $cw->visible = 1;
822 $cw->availability = null;
823 $cw->timemodified = time();
824 $cw->id = $DB->insert_record("course_sections", $cw);
826 // Now move it to the specified position.
827 if ($position > 0 && $position <= $lastsection) {
828 $course = is_object($courseorid) ? $courseorid : get_course($courseorid);
829 move_section_to($course, $cw->section, $position, true);
830 $cw->section = $position;
833 core\event\course_section_created::create_from_section($cw)->trigger();
835 rebuild_course_cache($courseid, true);
836 return $cw;
840 * Creates missing course section(s) and rebuilds course cache
842 * @param int|stdClass $courseorid course id or course object
843 * @param int|array $sections list of relative section numbers to create
844 * @return bool if there were any sections created
846 function course_create_sections_if_missing($courseorid, $sections) {
847 if (!is_array($sections)) {
848 $sections = array($sections);
850 $existing = array_keys(get_fast_modinfo($courseorid)->get_section_info_all());
851 if ($newsections = array_diff($sections, $existing)) {
852 foreach ($newsections as $sectionnum) {
853 course_create_section($courseorid, $sectionnum, true);
855 return true;
857 return false;
861 * Adds an existing module to the section
863 * Updates both tables {course_sections} and {course_modules}
865 * Note: This function does not use modinfo PROVIDED that the section you are
866 * adding the module to already exists. If the section does not exist, it will
867 * build modinfo if necessary and create the section.
869 * @param int|stdClass $courseorid course id or course object
870 * @param int $cmid id of the module already existing in course_modules table
871 * @param int $sectionnum relative number of the section (field course_sections.section)
872 * If section does not exist it will be created
873 * @param int|stdClass $beforemod id or object with field id corresponding to the module
874 * before which the module needs to be included. Null for inserting in the
875 * end of the section
876 * @return int The course_sections ID where the module is inserted
878 function course_add_cm_to_section($courseorid, $cmid, $sectionnum, $beforemod = null) {
879 global $DB, $COURSE;
880 if (is_object($beforemod)) {
881 $beforemod = $beforemod->id;
883 if (is_object($courseorid)) {
884 $courseid = $courseorid->id;
885 } else {
886 $courseid = $courseorid;
888 // Do not try to use modinfo here, there is no guarantee it is valid!
889 $section = $DB->get_record('course_sections',
890 array('course' => $courseid, 'section' => $sectionnum), '*', IGNORE_MISSING);
891 if (!$section) {
892 // This function call requires modinfo.
893 course_create_sections_if_missing($courseorid, $sectionnum);
894 $section = $DB->get_record('course_sections',
895 array('course' => $courseid, 'section' => $sectionnum), '*', MUST_EXIST);
898 $modarray = explode(",", trim($section->sequence));
899 if (empty($section->sequence)) {
900 $newsequence = "$cmid";
901 } else if ($beforemod && ($key = array_keys($modarray, $beforemod))) {
902 $insertarray = array($cmid, $beforemod);
903 array_splice($modarray, $key[0], 1, $insertarray);
904 $newsequence = implode(",", $modarray);
905 } else {
906 $newsequence = "$section->sequence,$cmid";
908 $DB->set_field("course_sections", "sequence", $newsequence, array("id" => $section->id));
909 $DB->set_field('course_modules', 'section', $section->id, array('id' => $cmid));
910 if (is_object($courseorid)) {
911 rebuild_course_cache($courseorid->id, true);
912 } else {
913 rebuild_course_cache($courseorid, true);
915 return $section->id; // Return course_sections ID that was used.
919 * Change the group mode of a course module.
921 * Note: Do not forget to trigger the event \core\event\course_module_updated as it needs
922 * to be triggered manually, refer to {@link \core\event\course_module_updated::create_from_cm()}.
924 * @param int $id course module ID.
925 * @param int $groupmode the new groupmode value.
926 * @return bool True if the $groupmode was updated.
928 function set_coursemodule_groupmode($id, $groupmode) {
929 global $DB;
930 $cm = $DB->get_record('course_modules', array('id' => $id), 'id,course,groupmode', MUST_EXIST);
931 if ($cm->groupmode != $groupmode) {
932 $DB->set_field('course_modules', 'groupmode', $groupmode, array('id' => $cm->id));
933 rebuild_course_cache($cm->course, true);
935 return ($cm->groupmode != $groupmode);
938 function set_coursemodule_idnumber($id, $idnumber) {
939 global $DB;
940 $cm = $DB->get_record('course_modules', array('id' => $id), 'id,course,idnumber', MUST_EXIST);
941 if ($cm->idnumber != $idnumber) {
942 $DB->set_field('course_modules', 'idnumber', $idnumber, array('id' => $cm->id));
943 rebuild_course_cache($cm->course, true);
945 return ($cm->idnumber != $idnumber);
949 * Set the visibility of a module and inherent properties.
951 * Note: Do not forget to trigger the event \core\event\course_module_updated as it needs
952 * to be triggered manually, refer to {@link \core\event\course_module_updated::create_from_cm()}.
954 * From 2.4 the parameter $prevstateoverrides has been removed, the logic it triggered
955 * has been moved to {@link set_section_visible()} which was the only place from which
956 * the parameter was used.
958 * @param int $id of the module
959 * @param int $visible state of the module
960 * @param int $visibleoncoursepage state of the module on the course page
961 * @return bool false when the module was not found, true otherwise
963 function set_coursemodule_visible($id, $visible, $visibleoncoursepage = 1) {
964 global $DB, $CFG;
965 require_once($CFG->libdir.'/gradelib.php');
966 require_once($CFG->dirroot.'/calendar/lib.php');
968 if (!$cm = $DB->get_record('course_modules', array('id'=>$id))) {
969 return false;
972 // Create events and propagate visibility to associated grade items if the value has changed.
973 // Only do this if it's changed to avoid accidently overwriting manual showing/hiding of student grades.
974 if ($cm->visible == $visible && $cm->visibleoncoursepage == $visibleoncoursepage) {
975 return true;
978 if (!$modulename = $DB->get_field('modules', 'name', array('id'=>$cm->module))) {
979 return false;
981 if (($cm->visible != $visible) &&
982 ($events = $DB->get_records('event', array('instance' => $cm->instance, 'modulename' => $modulename)))) {
983 foreach($events as $event) {
984 if ($visible) {
985 $event = new calendar_event($event);
986 $event->toggle_visibility(true);
987 } else {
988 $event = new calendar_event($event);
989 $event->toggle_visibility(false);
994 // Updating visible and visibleold to keep them in sync. Only changing a section visibility will
995 // affect visibleold to allow for an original visibility restore. See set_section_visible().
996 $cminfo = new stdClass();
997 $cminfo->id = $id;
998 $cminfo->visible = $visible;
999 $cminfo->visibleoncoursepage = $visibleoncoursepage;
1000 $cminfo->visibleold = $visible;
1001 $DB->update_record('course_modules', $cminfo);
1003 // Hide the associated grade items so the teacher doesn't also have to go to the gradebook and hide them there.
1004 // Note that this must be done after updating the row in course_modules, in case
1005 // the modules grade_item_update function needs to access $cm->visible.
1006 if ($cm->visible != $visible &&
1007 plugin_supports('mod', $modulename, FEATURE_CONTROLS_GRADE_VISIBILITY) &&
1008 component_callback_exists('mod_' . $modulename, 'grade_item_update')) {
1009 $instance = $DB->get_record($modulename, array('id' => $cm->instance), '*', MUST_EXIST);
1010 component_callback('mod_' . $modulename, 'grade_item_update', array($instance));
1011 } else if ($cm->visible != $visible) {
1012 $grade_items = grade_item::fetch_all(array('itemtype'=>'mod', 'itemmodule'=>$modulename, 'iteminstance'=>$cm->instance, 'courseid'=>$cm->course));
1013 if ($grade_items) {
1014 foreach ($grade_items as $grade_item) {
1015 $grade_item->set_hidden(!$visible);
1020 rebuild_course_cache($cm->course, true);
1021 return true;
1025 * Changes the course module name
1027 * @param int $id course module id
1028 * @param string $name new value for a name
1029 * @return bool whether a change was made
1031 function set_coursemodule_name($id, $name) {
1032 global $CFG, $DB;
1033 require_once($CFG->libdir . '/gradelib.php');
1035 $cm = get_coursemodule_from_id('', $id, 0, false, MUST_EXIST);
1037 $module = new \stdClass();
1038 $module->id = $cm->instance;
1040 // Escape strings as they would be by mform.
1041 if (!empty($CFG->formatstringstriptags)) {
1042 $module->name = clean_param($name, PARAM_TEXT);
1043 } else {
1044 $module->name = clean_param($name, PARAM_CLEANHTML);
1046 if ($module->name === $cm->name || strval($module->name) === '') {
1047 return false;
1049 if (\core_text::strlen($module->name) > 255) {
1050 throw new \moodle_exception('maximumchars', 'moodle', '', 255);
1053 $module->timemodified = time();
1054 $DB->update_record($cm->modname, $module);
1055 $cm->name = $module->name;
1056 \core\event\course_module_updated::create_from_cm($cm)->trigger();
1057 rebuild_course_cache($cm->course, true);
1059 // Attempt to update the grade item if relevant.
1060 $grademodule = $DB->get_record($cm->modname, array('id' => $cm->instance));
1061 $grademodule->cmidnumber = $cm->idnumber;
1062 $grademodule->modname = $cm->modname;
1063 grade_update_mod_grades($grademodule);
1065 // Update calendar events with the new name.
1066 course_module_update_calendar_events($cm->modname, $grademodule, $cm);
1068 return true;
1072 * This function will handle the whole deletion process of a module. This includes calling
1073 * the modules delete_instance function, deleting files, events, grades, conditional data,
1074 * the data in the course_module and course_sections table and adding a module deletion
1075 * event to the DB.
1077 * @param int $cmid the course module id
1078 * @param bool $async whether or not to try to delete the module using an adhoc task. Async also depends on a plugin hook.
1079 * @throws moodle_exception
1080 * @since Moodle 2.5
1082 function course_delete_module($cmid, $async = false) {
1083 // Check the 'course_module_background_deletion_recommended' hook first.
1084 // Only use asynchronous deletion if at least one plugin returns true and if async deletion has been requested.
1085 // Both are checked because plugins should not be allowed to dictate the deletion behaviour, only support/decline it.
1086 // It's up to plugins to handle things like whether or not they are enabled.
1087 if ($async && $pluginsfunction = get_plugins_with_function('course_module_background_deletion_recommended')) {
1088 foreach ($pluginsfunction as $plugintype => $plugins) {
1089 foreach ($plugins as $pluginfunction) {
1090 if ($pluginfunction()) {
1091 return course_module_flag_for_async_deletion($cmid);
1097 global $CFG, $DB;
1099 require_once($CFG->libdir.'/gradelib.php');
1100 require_once($CFG->libdir.'/questionlib.php');
1101 require_once($CFG->dirroot.'/blog/lib.php');
1102 require_once($CFG->dirroot.'/calendar/lib.php');
1104 // Get the course module.
1105 if (!$cm = $DB->get_record('course_modules', array('id' => $cmid))) {
1106 return true;
1109 // Get the module context.
1110 $modcontext = context_module::instance($cm->id);
1112 // Get the course module name.
1113 $modulename = $DB->get_field('modules', 'name', array('id' => $cm->module), MUST_EXIST);
1115 // Get the file location of the delete_instance function for this module.
1116 $modlib = "$CFG->dirroot/mod/$modulename/lib.php";
1118 // Include the file required to call the delete_instance function for this module.
1119 if (file_exists($modlib)) {
1120 require_once($modlib);
1121 } else {
1122 throw new moodle_exception('cannotdeletemodulemissinglib', '', '', null,
1123 "Cannot delete this module as the file mod/$modulename/lib.php is missing.");
1126 $deleteinstancefunction = $modulename . '_delete_instance';
1128 // Ensure the delete_instance function exists for this module.
1129 if (!function_exists($deleteinstancefunction)) {
1130 throw new moodle_exception('cannotdeletemodulemissingfunc', '', '', null,
1131 "Cannot delete this module as the function {$modulename}_delete_instance is missing in mod/$modulename/lib.php.");
1134 // Allow plugins to use this course module before we completely delete it.
1135 if ($pluginsfunction = get_plugins_with_function('pre_course_module_delete')) {
1136 foreach ($pluginsfunction as $plugintype => $plugins) {
1137 foreach ($plugins as $pluginfunction) {
1138 $pluginfunction($cm);
1143 // Delete activity context questions and question categories.
1144 question_delete_activity($cm);
1146 // Call the delete_instance function, if it returns false throw an exception.
1147 if (!$deleteinstancefunction($cm->instance)) {
1148 throw new moodle_exception('cannotdeletemoduleinstance', '', '', null,
1149 "Cannot delete the module $modulename (instance).");
1152 // Remove all module files in case modules forget to do that.
1153 $fs = get_file_storage();
1154 $fs->delete_area_files($modcontext->id);
1156 // Delete events from calendar.
1157 if ($events = $DB->get_records('event', array('instance' => $cm->instance, 'modulename' => $modulename))) {
1158 $coursecontext = context_course::instance($cm->course);
1159 foreach($events as $event) {
1160 $event->context = $coursecontext;
1161 $calendarevent = calendar_event::load($event);
1162 $calendarevent->delete();
1166 // Delete grade items, outcome items and grades attached to modules.
1167 if ($grade_items = grade_item::fetch_all(array('itemtype' => 'mod', 'itemmodule' => $modulename,
1168 'iteminstance' => $cm->instance, 'courseid' => $cm->course))) {
1169 foreach ($grade_items as $grade_item) {
1170 $grade_item->delete('moddelete');
1174 // Delete completion and availability data; it is better to do this even if the
1175 // features are not turned on, in case they were turned on previously (these will be
1176 // very quick on an empty table).
1177 $DB->delete_records('course_modules_completion', array('coursemoduleid' => $cm->id));
1178 $DB->delete_records('course_completion_criteria', array('moduleinstance' => $cm->id,
1179 'course' => $cm->course,
1180 'criteriatype' => COMPLETION_CRITERIA_TYPE_ACTIVITY));
1182 // Delete all tag instances associated with the instance of this module.
1183 core_tag_tag::delete_instances('mod_' . $modulename, null, $modcontext->id);
1184 core_tag_tag::remove_all_item_tags('core', 'course_modules', $cm->id);
1186 // Notify the competency subsystem.
1187 \core_competency\api::hook_course_module_deleted($cm);
1189 // Delete the context.
1190 context_helper::delete_instance(CONTEXT_MODULE, $cm->id);
1192 // Delete the module from the course_modules table.
1193 $DB->delete_records('course_modules', array('id' => $cm->id));
1195 // Delete module from that section.
1196 if (!delete_mod_from_section($cm->id, $cm->section)) {
1197 throw new moodle_exception('cannotdeletemodulefromsection', '', '', null,
1198 "Cannot delete the module $modulename (instance) from section.");
1201 // Trigger event for course module delete action.
1202 $event = \core\event\course_module_deleted::create(array(
1203 'courseid' => $cm->course,
1204 'context' => $modcontext,
1205 'objectid' => $cm->id,
1206 'other' => array(
1207 'modulename' => $modulename,
1208 'instanceid' => $cm->instance,
1211 $event->add_record_snapshot('course_modules', $cm);
1212 $event->trigger();
1213 rebuild_course_cache($cm->course, true);
1217 * Schedule a course module for deletion in the background using an adhoc task.
1219 * This method should not be called directly. Instead, please use course_delete_module($cmid, true), to denote async deletion.
1220 * The real deletion of the module is handled by the task, which calls 'course_delete_module($cmid)'.
1222 * @param int $cmid the course module id.
1223 * @return bool whether the module was successfully scheduled for deletion.
1224 * @throws \moodle_exception
1226 function course_module_flag_for_async_deletion($cmid) {
1227 global $CFG, $DB, $USER;
1228 require_once($CFG->libdir.'/gradelib.php');
1229 require_once($CFG->libdir.'/questionlib.php');
1230 require_once($CFG->dirroot.'/blog/lib.php');
1231 require_once($CFG->dirroot.'/calendar/lib.php');
1233 // Get the course module.
1234 if (!$cm = $DB->get_record('course_modules', array('id' => $cmid))) {
1235 return true;
1238 // We need to be reasonably certain the deletion is going to succeed before we background the process.
1239 // Make the necessary delete_instance checks, etc. before proceeding further. Throw exceptions if required.
1241 // Get the course module name.
1242 $modulename = $DB->get_field('modules', 'name', array('id' => $cm->module), MUST_EXIST);
1244 // Get the file location of the delete_instance function for this module.
1245 $modlib = "$CFG->dirroot/mod/$modulename/lib.php";
1247 // Include the file required to call the delete_instance function for this module.
1248 if (file_exists($modlib)) {
1249 require_once($modlib);
1250 } else {
1251 throw new \moodle_exception('cannotdeletemodulemissinglib', '', '', null,
1252 "Cannot delete this module as the file mod/$modulename/lib.php is missing.");
1255 $deleteinstancefunction = $modulename . '_delete_instance';
1257 // Ensure the delete_instance function exists for this module.
1258 if (!function_exists($deleteinstancefunction)) {
1259 throw new \moodle_exception('cannotdeletemodulemissingfunc', '', '', null,
1260 "Cannot delete this module as the function {$modulename}_delete_instance is missing in mod/$modulename/lib.php.");
1263 // We are going to defer the deletion as we can't be sure how long the module's pre_delete code will run for.
1264 $cm->deletioninprogress = '1';
1265 $DB->update_record('course_modules', $cm);
1267 // Create an adhoc task for the deletion of the course module. The task takes an array of course modules for removal.
1268 $removaltask = new \core_course\task\course_delete_modules();
1269 $removaltask->set_custom_data(array(
1270 'cms' => array($cm),
1271 'userid' => $USER->id,
1272 'realuserid' => \core\session\manager::get_realuser()->id
1275 // Queue the task for the next run.
1276 \core\task\manager::queue_adhoc_task($removaltask);
1278 // Reset the course cache to hide the module.
1279 rebuild_course_cache($cm->course, true);
1283 * Checks whether the given course has any course modules scheduled for adhoc deletion.
1285 * @param int $courseid the id of the course.
1286 * @return bool true if the course contains any modules pending deletion, false otherwise.
1288 function course_modules_pending_deletion($courseid) {
1289 if (empty($courseid)) {
1290 return false;
1292 $modinfo = get_fast_modinfo($courseid);
1293 foreach ($modinfo->get_cms() as $module) {
1294 if ($module->deletioninprogress == '1') {
1295 return true;
1298 return false;
1302 * Checks whether the course module, as defined by modulename and instanceid, is scheduled for deletion within the given course.
1304 * @param int $courseid the course id.
1305 * @param string $modulename the module name. E.g. 'assign', 'book', etc.
1306 * @param int $instanceid the module instance id.
1307 * @return bool true if the course module is pending deletion, false otherwise.
1309 function course_module_instance_pending_deletion($courseid, $modulename, $instanceid) {
1310 if (empty($courseid) || empty($modulename) || empty($instanceid)) {
1311 return false;
1313 $modinfo = get_fast_modinfo($courseid);
1314 $instances = $modinfo->get_instances_of($modulename);
1315 return isset($instances[$instanceid]) && $instances[$instanceid]->deletioninprogress;
1318 function delete_mod_from_section($modid, $sectionid) {
1319 global $DB;
1321 if ($section = $DB->get_record("course_sections", array("id"=>$sectionid)) ) {
1323 $modarray = explode(",", $section->sequence);
1325 if ($key = array_keys ($modarray, $modid)) {
1326 array_splice($modarray, $key[0], 1);
1327 $newsequence = implode(",", $modarray);
1328 $DB->set_field("course_sections", "sequence", $newsequence, array("id"=>$section->id));
1329 rebuild_course_cache($section->course, true);
1330 return true;
1331 } else {
1332 return false;
1336 return false;
1340 * This function updates the calendar events from the information stored in the module table and the course
1341 * module table.
1343 * @param string $modulename Module name
1344 * @param stdClass $instance Module object. Either the $instance or the $cm must be supplied.
1345 * @param stdClass $cm Course module object. Either the $instance or the $cm must be supplied.
1346 * @return bool Returns true if calendar events are updated.
1347 * @since Moodle 3.3.4
1349 function course_module_update_calendar_events($modulename, $instance = null, $cm = null) {
1350 global $DB;
1352 if (isset($instance) || isset($cm)) {
1354 if (!isset($instance)) {
1355 $instance = $DB->get_record($modulename, array('id' => $cm->instance), '*', MUST_EXIST);
1357 if (!isset($cm)) {
1358 $cm = get_coursemodule_from_instance($modulename, $instance->id, $instance->course);
1360 if (!empty($cm)) {
1361 course_module_calendar_event_update_process($instance, $cm);
1363 return true;
1365 return false;
1369 * Update all instances through out the site or in a course.
1371 * @param string $modulename Module type to update.
1372 * @param integer $courseid Course id to update events. 0 for the whole site.
1373 * @return bool Returns True if the update was successful.
1374 * @since Moodle 3.3.4
1376 function course_module_bulk_update_calendar_events($modulename, $courseid = 0) {
1377 global $DB;
1379 $instances = null;
1380 if ($courseid) {
1381 if (!$instances = $DB->get_records($modulename, array('course' => $courseid))) {
1382 return false;
1384 } else {
1385 if (!$instances = $DB->get_records($modulename)) {
1386 return false;
1390 foreach ($instances as $instance) {
1391 if ($cm = get_coursemodule_from_instance($modulename, $instance->id, $instance->course)) {
1392 course_module_calendar_event_update_process($instance, $cm);
1395 return true;
1399 * Calendar events for a module instance are updated.
1401 * @param stdClass $instance Module instance object.
1402 * @param stdClass $cm Course Module object.
1403 * @since Moodle 3.3.4
1405 function course_module_calendar_event_update_process($instance, $cm) {
1406 // We need to call *_refresh_events() first because some modules delete 'old' events at the end of the code which
1407 // will remove the completion events.
1408 $refresheventsfunction = $cm->modname . '_refresh_events';
1409 if (function_exists($refresheventsfunction)) {
1410 call_user_func($refresheventsfunction, $cm->course, $instance, $cm);
1412 $completionexpected = (!empty($cm->completionexpected)) ? $cm->completionexpected : null;
1413 \core_completion\api::update_completion_date_event($cm->id, $cm->modname, $instance, $completionexpected);
1417 * Moves a section within a course, from a position to another.
1418 * Be very careful: $section and $destination refer to section number,
1419 * not id!.
1421 * @param object $course
1422 * @param int $section Section number (not id!!!)
1423 * @param int $destination
1424 * @param bool $ignorenumsections
1425 * @return boolean Result
1427 function move_section_to($course, $section, $destination, $ignorenumsections = false) {
1428 /// Moves a whole course section up and down within the course
1429 global $USER, $DB;
1431 if (!$destination && $destination != 0) {
1432 return true;
1435 // compartibility with course formats using field 'numsections'
1436 $courseformatoptions = course_get_format($course)->get_format_options();
1437 if ((!$ignorenumsections && array_key_exists('numsections', $courseformatoptions) &&
1438 ($destination > $courseformatoptions['numsections'])) || ($destination < 1)) {
1439 return false;
1442 // Get all sections for this course and re-order them (2 of them should now share the same section number)
1443 if (!$sections = $DB->get_records_menu('course_sections', array('course' => $course->id),
1444 'section ASC, id ASC', 'id, section')) {
1445 return false;
1448 $movedsections = reorder_sections($sections, $section, $destination);
1450 // Update all sections. Do this in 2 steps to avoid breaking database
1451 // uniqueness constraint
1452 $transaction = $DB->start_delegated_transaction();
1453 foreach ($movedsections as $id => $position) {
1454 if ($sections[$id] !== $position) {
1455 $DB->set_field('course_sections', 'section', -$position, array('id' => $id));
1458 foreach ($movedsections as $id => $position) {
1459 if ($sections[$id] !== $position) {
1460 $DB->set_field('course_sections', 'section', $position, array('id' => $id));
1464 // If we move the highlighted section itself, then just highlight the destination.
1465 // Adjust the higlighted section location if we move something over it either direction.
1466 if ($section == $course->marker) {
1467 course_set_marker($course->id, $destination);
1468 } elseif ($section > $course->marker && $course->marker >= $destination) {
1469 course_set_marker($course->id, $course->marker+1);
1470 } elseif ($section < $course->marker && $course->marker <= $destination) {
1471 course_set_marker($course->id, $course->marker-1);
1474 $transaction->allow_commit();
1475 rebuild_course_cache($course->id, true);
1476 return true;
1480 * This method will delete a course section and may delete all modules inside it.
1482 * No permissions are checked here, use {@link course_can_delete_section()} to
1483 * check if section can actually be deleted.
1485 * @param int|stdClass $course
1486 * @param int|stdClass|section_info $section
1487 * @param bool $forcedeleteifnotempty if set to false section will not be deleted if it has modules in it.
1488 * @param bool $async whether or not to try to delete the section using an adhoc task. Async also depends on a plugin hook.
1489 * @return bool whether section was deleted
1491 function course_delete_section($course, $section, $forcedeleteifnotempty = true, $async = false) {
1492 global $DB;
1494 // Prepare variables.
1495 $courseid = (is_object($course)) ? $course->id : (int)$course;
1496 $sectionnum = (is_object($section)) ? $section->section : (int)$section;
1497 $section = $DB->get_record('course_sections', array('course' => $courseid, 'section' => $sectionnum));
1498 if (!$section) {
1499 // No section exists, can't proceed.
1500 return false;
1503 // Check the 'course_module_background_deletion_recommended' hook first.
1504 // Only use asynchronous deletion if at least one plugin returns true and if async deletion has been requested.
1505 // Both are checked because plugins should not be allowed to dictate the deletion behaviour, only support/decline it.
1506 // It's up to plugins to handle things like whether or not they are enabled.
1507 if ($async && $pluginsfunction = get_plugins_with_function('course_module_background_deletion_recommended')) {
1508 foreach ($pluginsfunction as $plugintype => $plugins) {
1509 foreach ($plugins as $pluginfunction) {
1510 if ($pluginfunction()) {
1511 return course_delete_section_async($section, $forcedeleteifnotempty);
1517 $format = course_get_format($course);
1518 $sectionname = $format->get_section_name($section);
1520 // Delete section.
1521 $result = $format->delete_section($section, $forcedeleteifnotempty);
1523 // Trigger an event for course section deletion.
1524 if ($result) {
1525 $context = context_course::instance($courseid);
1526 $event = \core\event\course_section_deleted::create(
1527 array(
1528 'objectid' => $section->id,
1529 'courseid' => $courseid,
1530 'context' => $context,
1531 'other' => array(
1532 'sectionnum' => $section->section,
1533 'sectionname' => $sectionname,
1537 $event->add_record_snapshot('course_sections', $section);
1538 $event->trigger();
1540 return $result;
1544 * Course section deletion, using an adhoc task for deletion of the modules it contains.
1545 * 1. Schedule all modules within the section for adhoc removal.
1546 * 2. Move all modules to course section 0.
1547 * 3. Delete the resulting empty section.
1549 * @param \stdClass $section the section to schedule for deletion.
1550 * @param bool $forcedeleteifnotempty whether to force section deletion if it contains modules.
1551 * @return bool true if the section was scheduled for deletion, false otherwise.
1553 function course_delete_section_async($section, $forcedeleteifnotempty = true) {
1554 global $DB, $USER;
1556 // Objects only, and only valid ones.
1557 if (!is_object($section) || empty($section->id)) {
1558 return false;
1561 // Does the object currently exist in the DB for removal (check for stale objects).
1562 $section = $DB->get_record('course_sections', array('id' => $section->id));
1563 if (!$section || !$section->section) {
1564 // No section exists, or the section is 0. Can't proceed.
1565 return false;
1568 // Check whether the section can be removed.
1569 if (!$forcedeleteifnotempty && (!empty($section->sequence) || !empty($section->summary))) {
1570 return false;
1573 $format = course_get_format($section->course);
1574 $sectionname = $format->get_section_name($section);
1576 // Flag those modules having no existing deletion flag. Some modules may have been scheduled for deletion manually, and we don't
1577 // want to create additional adhoc deletion tasks for these. Moving them to section 0 will suffice.
1578 $affectedmods = $DB->get_records_select('course_modules', 'course = ? AND section = ? AND deletioninprogress <> ?',
1579 [$section->course, $section->id, 1], '', 'id');
1580 $DB->set_field('course_modules', 'deletioninprogress', '1', ['course' => $section->course, 'section' => $section->id]);
1582 // Move all modules to section 0.
1583 $modules = $DB->get_records('course_modules', ['section' => $section->id], '');
1584 $sectionzero = $DB->get_record('course_sections', ['course' => $section->course, 'section' => '0']);
1585 foreach ($modules as $mod) {
1586 moveto_module($mod, $sectionzero);
1589 // Create and queue an adhoc task for the deletion of the modules.
1590 $removaltask = new \core_course\task\course_delete_modules();
1591 $data = array(
1592 'cms' => $affectedmods,
1593 'userid' => $USER->id,
1594 'realuserid' => \core\session\manager::get_realuser()->id
1596 $removaltask->set_custom_data($data);
1597 \core\task\manager::queue_adhoc_task($removaltask);
1599 // Delete the now empty section, passing in only the section number, which forces the function to fetch a new object.
1600 // The refresh is needed because the section->sequence is now stale.
1601 $result = $format->delete_section($section->section, $forcedeleteifnotempty);
1603 // Trigger an event for course section deletion.
1604 if ($result) {
1605 $context = \context_course::instance($section->course);
1606 $event = \core\event\course_section_deleted::create(
1607 array(
1608 'objectid' => $section->id,
1609 'courseid' => $section->course,
1610 'context' => $context,
1611 'other' => array(
1612 'sectionnum' => $section->section,
1613 'sectionname' => $sectionname,
1617 $event->add_record_snapshot('course_sections', $section);
1618 $event->trigger();
1620 rebuild_course_cache($section->course, true);
1622 return $result;
1626 * Updates the course section
1628 * This function does not check permissions or clean values - this has to be done prior to calling it.
1630 * @param int|stdClass $course
1631 * @param stdClass $section record from course_sections table - it will be updated with the new values
1632 * @param array|stdClass $data
1634 function course_update_section($course, $section, $data) {
1635 global $DB;
1637 $courseid = (is_object($course)) ? $course->id : (int)$course;
1639 // Some fields can not be updated using this method.
1640 $data = array_diff_key((array)$data, array('id', 'course', 'section', 'sequence'));
1641 $changevisibility = (array_key_exists('visible', $data) && (bool)$data['visible'] != (bool)$section->visible);
1642 if (array_key_exists('name', $data) && \core_text::strlen($data['name']) > 255) {
1643 throw new moodle_exception('maximumchars', 'moodle', '', 255);
1646 // Update record in the DB and course format options.
1647 $data['id'] = $section->id;
1648 $data['timemodified'] = time();
1649 $DB->update_record('course_sections', $data);
1650 rebuild_course_cache($courseid, true);
1651 course_get_format($courseid)->update_section_format_options($data);
1653 // Update fields of the $section object.
1654 foreach ($data as $key => $value) {
1655 if (property_exists($section, $key)) {
1656 $section->$key = $value;
1660 // Trigger an event for course section update.
1661 $event = \core\event\course_section_updated::create(
1662 array(
1663 'objectid' => $section->id,
1664 'courseid' => $courseid,
1665 'context' => context_course::instance($courseid),
1666 'other' => array('sectionnum' => $section->section)
1669 $event->trigger();
1671 // If section visibility was changed, hide the modules in this section too.
1672 if ($changevisibility && !empty($section->sequence)) {
1673 $modules = explode(',', $section->sequence);
1674 foreach ($modules as $moduleid) {
1675 if ($cm = get_coursemodule_from_id(null, $moduleid, $courseid)) {
1676 if ($data['visible']) {
1677 // As we unhide the section, we use the previously saved visibility stored in visibleold.
1678 set_coursemodule_visible($moduleid, $cm->visibleold, $cm->visibleoncoursepage);
1679 } else {
1680 // We hide the section, so we hide the module but we store the original state in visibleold.
1681 set_coursemodule_visible($moduleid, 0, $cm->visibleoncoursepage);
1682 $DB->set_field('course_modules', 'visibleold', $cm->visible, array('id' => $moduleid));
1684 \core\event\course_module_updated::create_from_cm($cm)->trigger();
1691 * Checks if the current user can delete a section (if course format allows it and user has proper permissions).
1693 * @param int|stdClass $course
1694 * @param int|stdClass|section_info $section
1695 * @return bool
1697 function course_can_delete_section($course, $section) {
1698 if (is_object($section)) {
1699 $section = $section->section;
1701 if (!$section) {
1702 // Not possible to delete 0-section.
1703 return false;
1705 // Course format should allow to delete sections.
1706 if (!course_get_format($course)->can_delete_section($section)) {
1707 return false;
1709 // Make sure user has capability to update course and move sections.
1710 $context = context_course::instance(is_object($course) ? $course->id : $course);
1711 if (!has_all_capabilities(array('moodle/course:movesections', 'moodle/course:update'), $context)) {
1712 return false;
1714 // Make sure user has capability to delete each activity in this section.
1715 $modinfo = get_fast_modinfo($course);
1716 if (!empty($modinfo->sections[$section])) {
1717 foreach ($modinfo->sections[$section] as $cmid) {
1718 if (!has_capability('moodle/course:manageactivities', context_module::instance($cmid))) {
1719 return false;
1723 return true;
1727 * Reordering algorithm for course sections. Given an array of section->section indexed by section->id,
1728 * an original position number and a target position number, rebuilds the array so that the
1729 * move is made without any duplication of section positions.
1730 * Note: The target_position is the position AFTER WHICH the moved section will be inserted. If you want to
1731 * insert a section before the first one, you must give 0 as the target (section 0 can never be moved).
1733 * @param array $sections
1734 * @param int $origin_position
1735 * @param int $target_position
1736 * @return array
1738 function reorder_sections($sections, $origin_position, $target_position) {
1739 if (!is_array($sections)) {
1740 return false;
1743 // We can't move section position 0
1744 if ($origin_position < 1) {
1745 echo "We can't move section position 0";
1746 return false;
1749 // Locate origin section in sections array
1750 if (!$origin_key = array_search($origin_position, $sections)) {
1751 echo "searched position not in sections array";
1752 return false; // searched position not in sections array
1755 // Extract origin section
1756 $origin_section = $sections[$origin_key];
1757 unset($sections[$origin_key]);
1759 // Find offset of target position (stupid PHP's array_splice requires offset instead of key index!)
1760 $found = false;
1761 $append_array = array();
1762 foreach ($sections as $id => $position) {
1763 if ($found) {
1764 $append_array[$id] = $position;
1765 unset($sections[$id]);
1767 if ($position == $target_position) {
1768 if ($target_position < $origin_position) {
1769 $append_array[$id] = $position;
1770 unset($sections[$id]);
1772 $found = true;
1776 // Append moved section
1777 $sections[$origin_key] = $origin_section;
1779 // Append rest of array (if applicable)
1780 if (!empty($append_array)) {
1781 foreach ($append_array as $id => $position) {
1782 $sections[$id] = $position;
1786 // Renumber positions
1787 $position = 0;
1788 foreach ($sections as $id => $p) {
1789 $sections[$id] = $position;
1790 $position++;
1793 return $sections;
1798 * Move the module object $mod to the specified $section
1799 * If $beforemod exists then that is the module
1800 * before which $modid should be inserted
1802 * @param stdClass|cm_info $mod
1803 * @param stdClass|section_info $section
1804 * @param int|stdClass $beforemod id or object with field id corresponding to the module
1805 * before which the module needs to be included. Null for inserting in the
1806 * end of the section
1807 * @return int new value for module visibility (0 or 1)
1809 function moveto_module($mod, $section, $beforemod=NULL) {
1810 global $OUTPUT, $DB;
1812 // Current module visibility state - return value of this function.
1813 $modvisible = $mod->visible;
1815 // Remove original module from original section.
1816 if (! delete_mod_from_section($mod->id, $mod->section)) {
1817 echo $OUTPUT->notification("Could not delete module from existing section");
1820 // If moving to a hidden section then hide module.
1821 if ($mod->section != $section->id) {
1822 if (!$section->visible && $mod->visible) {
1823 // Module was visible but must become hidden after moving to hidden section.
1824 $modvisible = 0;
1825 set_coursemodule_visible($mod->id, 0);
1826 // Set visibleold to 1 so module will be visible when section is made visible.
1827 $DB->set_field('course_modules', 'visibleold', 1, array('id' => $mod->id));
1829 if ($section->visible && !$mod->visible) {
1830 // Hidden module was moved to the visible section, restore the module visibility from visibleold.
1831 set_coursemodule_visible($mod->id, $mod->visibleold);
1832 $modvisible = $mod->visibleold;
1836 // Add the module into the new section.
1837 course_add_cm_to_section($section->course, $mod->id, $section->section, $beforemod);
1838 return $modvisible;
1842 * Returns the list of all editing actions that current user can perform on the module
1844 * @param cm_info $mod The module to produce editing buttons for
1845 * @param int $indent The current indenting (default -1 means no move left-right actions)
1846 * @param int $sr The section to link back to (used for creating the links)
1847 * @return array array of action_link or pix_icon objects
1849 function course_get_cm_edit_actions(cm_info $mod, $indent = -1, $sr = null) {
1850 global $COURSE, $SITE, $CFG;
1852 static $str;
1854 $coursecontext = context_course::instance($mod->course);
1855 $modcontext = context_module::instance($mod->id);
1856 $courseformat = course_get_format($mod->get_course());
1858 $editcaps = array('moodle/course:manageactivities', 'moodle/course:activityvisibility', 'moodle/role:assign');
1859 $dupecaps = array('moodle/backup:backuptargetimport', 'moodle/restore:restoretargetimport');
1861 // No permission to edit anything.
1862 if (!has_any_capability($editcaps, $modcontext) and !has_all_capabilities($dupecaps, $coursecontext)) {
1863 return array();
1866 $hasmanageactivities = has_capability('moodle/course:manageactivities', $modcontext);
1868 if (!isset($str)) {
1869 $str = get_strings(array('delete', 'move', 'moveright', 'moveleft',
1870 'editsettings', 'duplicate', 'modhide', 'makeavailable', 'makeunavailable', 'modshow'), 'moodle');
1871 $str->assign = get_string('assignroles', 'role');
1872 $str->groupsnone = get_string('clicktochangeinbrackets', 'moodle', get_string("groupsnone"));
1873 $str->groupsseparate = get_string('clicktochangeinbrackets', 'moodle', get_string("groupsseparate"));
1874 $str->groupsvisible = get_string('clicktochangeinbrackets', 'moodle', get_string("groupsvisible"));
1877 $baseurl = new moodle_url('/course/mod.php', array('sesskey' => sesskey()));
1879 if ($sr !== null) {
1880 $baseurl->param('sr', $sr);
1882 $actions = array();
1884 // Update.
1885 if ($hasmanageactivities) {
1886 $actions['update'] = new action_menu_link_secondary(
1887 new moodle_url($baseurl, array('update' => $mod->id)),
1888 new pix_icon('t/edit', $str->editsettings, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1889 $str->editsettings,
1890 array('class' => 'editing_update', 'data-action' => 'update')
1894 // Indent.
1895 if ($hasmanageactivities && $indent >= 0) {
1896 $indentlimits = new stdClass();
1897 $indentlimits->min = 0;
1898 $indentlimits->max = 16;
1899 if (right_to_left()) { // Exchange arrows on RTL
1900 $rightarrow = 't/left';
1901 $leftarrow = 't/right';
1902 } else {
1903 $rightarrow = 't/right';
1904 $leftarrow = 't/left';
1907 if ($indent >= $indentlimits->max) {
1908 $enabledclass = 'hidden';
1909 } else {
1910 $enabledclass = '';
1912 $actions['moveright'] = new action_menu_link_secondary(
1913 new moodle_url($baseurl, array('id' => $mod->id, 'indent' => '1')),
1914 new pix_icon($rightarrow, $str->moveright, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1915 $str->moveright,
1916 array('class' => 'editing_moveright ' . $enabledclass, 'data-action' => 'moveright',
1917 'data-keepopen' => true, 'data-sectionreturn' => $sr)
1920 if ($indent <= $indentlimits->min) {
1921 $enabledclass = 'hidden';
1922 } else {
1923 $enabledclass = '';
1925 $actions['moveleft'] = new action_menu_link_secondary(
1926 new moodle_url($baseurl, array('id' => $mod->id, 'indent' => '-1')),
1927 new pix_icon($leftarrow, $str->moveleft, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1928 $str->moveleft,
1929 array('class' => 'editing_moveleft ' . $enabledclass, 'data-action' => 'moveleft',
1930 'data-keepopen' => true, 'data-sectionreturn' => $sr)
1935 // Hide/Show/Available/Unavailable.
1936 if (has_capability('moodle/course:activityvisibility', $modcontext)) {
1937 $allowstealth = !empty($CFG->allowstealth) && $courseformat->allow_stealth_module_visibility($mod, $mod->get_section_info());
1939 $sectionvisible = $mod->get_section_info()->visible;
1940 // The module on the course page may be in one of the following states:
1941 // - Available and displayed on the course page ($displayedoncoursepage);
1942 // - Not available and not displayed on the course page ($unavailable);
1943 // - Available but not displayed on the course page ($stealth) - this can also be a visible activity in a hidden section.
1944 $displayedoncoursepage = $mod->visible && $mod->visibleoncoursepage && $sectionvisible;
1945 $unavailable = !$mod->visible;
1946 $stealth = $mod->visible && (!$mod->visibleoncoursepage || !$sectionvisible);
1947 if ($displayedoncoursepage) {
1948 $actions['hide'] = new action_menu_link_secondary(
1949 new moodle_url($baseurl, array('hide' => $mod->id)),
1950 new pix_icon('t/hide', $str->modhide, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1951 $str->modhide,
1952 array('class' => 'editing_hide', 'data-action' => 'hide')
1954 } else if (!$displayedoncoursepage && $sectionvisible) {
1955 // Offer to "show" only if the section is visible.
1956 $actions['show'] = new action_menu_link_secondary(
1957 new moodle_url($baseurl, array('show' => $mod->id)),
1958 new pix_icon('t/show', $str->modshow, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1959 $str->modshow,
1960 array('class' => 'editing_show', 'data-action' => 'show')
1964 if ($stealth) {
1965 // When making the "stealth" module unavailable we perform the same action as hiding the visible module.
1966 $actions['hide'] = new action_menu_link_secondary(
1967 new moodle_url($baseurl, array('hide' => $mod->id)),
1968 new pix_icon('t/unblock', $str->makeunavailable, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1969 $str->makeunavailable,
1970 array('class' => 'editing_makeunavailable', 'data-action' => 'hide', 'data-sectionreturn' => $sr)
1972 } else if ($unavailable && (!$sectionvisible || $allowstealth) && $mod->has_view()) {
1973 // Allow to make visually hidden module available in gradebook and other reports by making it a "stealth" module.
1974 // When the section is hidden it is an equivalent of "showing" the module.
1975 // Activities without the link (i.e. labels) can not be made available but hidden on course page.
1976 $action = $sectionvisible ? 'stealth' : 'show';
1977 $actions[$action] = new action_menu_link_secondary(
1978 new moodle_url($baseurl, array($action => $mod->id)),
1979 new pix_icon('t/block', $str->makeavailable, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1980 $str->makeavailable,
1981 array('class' => 'editing_makeavailable', 'data-action' => $action, 'data-sectionreturn' => $sr)
1986 // Duplicate (require both target import caps to be able to duplicate and backup2 support, see modduplicate.php)
1987 if (has_all_capabilities($dupecaps, $coursecontext) &&
1988 plugin_supports('mod', $mod->modname, FEATURE_BACKUP_MOODLE2) &&
1989 course_allowed_module($mod->get_course(), $mod->modname)) {
1990 $actions['duplicate'] = new action_menu_link_secondary(
1991 new moodle_url($baseurl, array('duplicate' => $mod->id)),
1992 new pix_icon('t/copy', $str->duplicate, 'moodle', array('class' => 'iconsmall', 'title' => '')),
1993 $str->duplicate,
1994 array('class' => 'editing_duplicate', 'data-action' => 'duplicate', 'data-sectionreturn' => $sr)
1998 // Groupmode.
1999 if ($hasmanageactivities && !$mod->coursegroupmodeforce) {
2000 if (plugin_supports('mod', $mod->modname, FEATURE_GROUPS, 0)) {
2001 if ($mod->effectivegroupmode == SEPARATEGROUPS) {
2002 $nextgroupmode = VISIBLEGROUPS;
2003 $grouptitle = $str->groupsseparate;
2004 $actionname = 'groupsseparate';
2005 $nextactionname = 'groupsvisible';
2006 $groupimage = 'i/groups';
2007 } else if ($mod->effectivegroupmode == VISIBLEGROUPS) {
2008 $nextgroupmode = NOGROUPS;
2009 $grouptitle = $str->groupsvisible;
2010 $actionname = 'groupsvisible';
2011 $nextactionname = 'groupsnone';
2012 $groupimage = 'i/groupv';
2013 } else {
2014 $nextgroupmode = SEPARATEGROUPS;
2015 $grouptitle = $str->groupsnone;
2016 $actionname = 'groupsnone';
2017 $nextactionname = 'groupsseparate';
2018 $groupimage = 'i/groupn';
2021 $actions[$actionname] = new action_menu_link_primary(
2022 new moodle_url($baseurl, array('id' => $mod->id, 'groupmode' => $nextgroupmode)),
2023 new pix_icon($groupimage, $grouptitle, 'moodle', array('class' => 'iconsmall')),
2024 $grouptitle,
2025 array('class' => 'editing_'. $actionname, 'data-action' => $nextactionname,
2026 'aria-live' => 'assertive', 'data-sectionreturn' => $sr)
2028 } else {
2029 $actions['nogroupsupport'] = new action_menu_filler();
2033 // Assign.
2034 if (has_capability('moodle/role:assign', $modcontext)){
2035 $actions['assign'] = new action_menu_link_secondary(
2036 new moodle_url('/admin/roles/assign.php', array('contextid' => $modcontext->id)),
2037 new pix_icon('t/assignroles', $str->assign, 'moodle', array('class' => 'iconsmall', 'title' => '')),
2038 $str->assign,
2039 array('class' => 'editing_assign', 'data-action' => 'assignroles', 'data-sectionreturn' => $sr)
2043 // Delete.
2044 if ($hasmanageactivities) {
2045 $actions['delete'] = new action_menu_link_secondary(
2046 new moodle_url($baseurl, array('delete' => $mod->id)),
2047 new pix_icon('t/delete', $str->delete, 'moodle', array('class' => 'iconsmall', 'title' => '')),
2048 $str->delete,
2049 array('class' => 'editing_delete', 'data-action' => 'delete', 'data-sectionreturn' => $sr)
2053 return $actions;
2057 * Returns the move action.
2059 * @param cm_info $mod The module to produce a move button for
2060 * @param int $sr The section to link back to (used for creating the links)
2061 * @return The markup for the move action, or an empty string if not available.
2063 function course_get_cm_move(cm_info $mod, $sr = null) {
2064 global $OUTPUT;
2066 static $str;
2067 static $baseurl;
2069 $modcontext = context_module::instance($mod->id);
2070 $hasmanageactivities = has_capability('moodle/course:manageactivities', $modcontext);
2072 if (!isset($str)) {
2073 $str = get_strings(array('move'));
2076 if (!isset($baseurl)) {
2077 $baseurl = new moodle_url('/course/mod.php', array('sesskey' => sesskey()));
2079 if ($sr !== null) {
2080 $baseurl->param('sr', $sr);
2084 if ($hasmanageactivities) {
2085 $pixicon = 'i/dragdrop';
2087 if (!course_ajax_enabled($mod->get_course())) {
2088 // Override for course frontpage until we get drag/drop working there.
2089 $pixicon = 't/move';
2092 return html_writer::link(
2093 new moodle_url($baseurl, array('copy' => $mod->id)),
2094 $OUTPUT->pix_icon($pixicon, $str->move, 'moodle', array('class' => 'iconsmall', 'title' => '')),
2095 array('class' => 'editing_move', 'data-action' => 'move', 'data-sectionreturn' => $sr)
2098 return '';
2102 * given a course object with shortname & fullname, this function will
2103 * truncate the the number of chars allowed and add ... if it was too long
2105 function course_format_name ($course,$max=100) {
2107 $context = context_course::instance($course->id);
2108 $shortname = format_string($course->shortname, true, array('context' => $context));
2109 $fullname = format_string($course->fullname, true, array('context' => context_course::instance($course->id)));
2110 $str = $shortname.': '. $fullname;
2111 if (core_text::strlen($str) <= $max) {
2112 return $str;
2114 else {
2115 return core_text::substr($str,0,$max-3).'...';
2120 * Is the user allowed to add this type of module to this course?
2121 * @param object $course the course settings. Only $course->id is used.
2122 * @param string $modname the module name. E.g. 'forum' or 'quiz'.
2123 * @return bool whether the current user is allowed to add this type of module to this course.
2125 function course_allowed_module($course, $modname) {
2126 if (is_numeric($modname)) {
2127 throw new coding_exception('Function course_allowed_module no longer
2128 supports numeric module ids. Please update your code to pass the module name.');
2131 $capability = 'mod/' . $modname . ':addinstance';
2132 if (!get_capability_info($capability)) {
2133 // Debug warning that the capability does not exist, but no more than once per page.
2134 static $warned = array();
2135 $archetype = plugin_supports('mod', $modname, FEATURE_MOD_ARCHETYPE, MOD_ARCHETYPE_OTHER);
2136 if (!isset($warned[$modname]) && $archetype !== MOD_ARCHETYPE_SYSTEM) {
2137 debugging('The module ' . $modname . ' does not define the standard capability ' .
2138 $capability , DEBUG_DEVELOPER);
2139 $warned[$modname] = 1;
2142 // If the capability does not exist, the module can always be added.
2143 return true;
2146 $coursecontext = context_course::instance($course->id);
2147 return has_capability($capability, $coursecontext);
2151 * Efficiently moves many courses around while maintaining
2152 * sortorder in order.
2154 * @param array $courseids is an array of course ids
2155 * @param int $categoryid
2156 * @return bool success
2158 function move_courses($courseids, $categoryid) {
2159 global $DB;
2161 if (empty($courseids)) {
2162 // Nothing to do.
2163 return false;
2166 if (!$category = $DB->get_record('course_categories', array('id' => $categoryid))) {
2167 return false;
2170 $courseids = array_reverse($courseids);
2171 $newparent = context_coursecat::instance($category->id);
2172 $i = 1;
2174 list($where, $params) = $DB->get_in_or_equal($courseids);
2175 $dbcourses = $DB->get_records_select('course', 'id ' . $where, $params, '', 'id, category, shortname, fullname');
2176 foreach ($dbcourses as $dbcourse) {
2177 $course = new stdClass();
2178 $course->id = $dbcourse->id;
2179 $course->category = $category->id;
2180 $course->sortorder = $category->sortorder + MAX_COURSES_IN_CATEGORY - $i++;
2181 if ($category->visible == 0) {
2182 // Hide the course when moving into hidden category, do not update the visibleold flag - we want to get
2183 // to previous state if somebody unhides the category.
2184 $course->visible = 0;
2187 $DB->update_record('course', $course);
2189 // Update context, so it can be passed to event.
2190 $context = context_course::instance($course->id);
2191 $context->update_moved($newparent);
2193 // Trigger a course updated event.
2194 $event = \core\event\course_updated::create(array(
2195 'objectid' => $course->id,
2196 'context' => context_course::instance($course->id),
2197 'other' => array('shortname' => $dbcourse->shortname,
2198 'fullname' => $dbcourse->fullname)
2200 $event->set_legacy_logdata(array($course->id, 'course', 'move', 'edit.php?id=' . $course->id, $course->id));
2201 $event->trigger();
2203 fix_course_sortorder();
2204 cache_helper::purge_by_event('changesincourse');
2206 return true;
2210 * Returns the display name of the given section that the course prefers
2212 * Implementation of this function is provided by course format
2213 * @see format_base::get_section_name()
2215 * @param int|stdClass $courseorid The course to get the section name for (object or just course id)
2216 * @param int|stdClass $section Section object from database or just field course_sections.section
2217 * @return string Display name that the course format prefers, e.g. "Week 2"
2219 function get_section_name($courseorid, $section) {
2220 return course_get_format($courseorid)->get_section_name($section);
2224 * Tells if current course format uses sections
2226 * @param string $format Course format ID e.g. 'weeks' $course->format
2227 * @return bool
2229 function course_format_uses_sections($format) {
2230 $course = new stdClass();
2231 $course->format = $format;
2232 return course_get_format($course)->uses_sections();
2236 * Returns the information about the ajax support in the given source format
2238 * The returned object's property (boolean)capable indicates that
2239 * the course format supports Moodle course ajax features.
2241 * @param string $format
2242 * @return stdClass
2244 function course_format_ajax_support($format) {
2245 $course = new stdClass();
2246 $course->format = $format;
2247 return course_get_format($course)->supports_ajax();
2251 * Can the current user delete this course?
2252 * Course creators have exception,
2253 * 1 day after the creation they can sill delete the course.
2254 * @param int $courseid
2255 * @return boolean
2257 function can_delete_course($courseid) {
2258 global $USER;
2260 $context = context_course::instance($courseid);
2262 if (has_capability('moodle/course:delete', $context)) {
2263 return true;
2266 // hack: now try to find out if creator created this course recently (1 day)
2267 if (!has_capability('moodle/course:create', $context)) {
2268 return false;
2271 $since = time() - 60*60*24;
2272 $course = get_course($courseid);
2274 if ($course->timecreated < $since) {
2275 return false; // Return if the course was not created in last 24 hours.
2278 $logmanger = get_log_manager();
2279 $readers = $logmanger->get_readers('\core\log\sql_reader');
2280 $reader = reset($readers);
2282 if (empty($reader)) {
2283 return false; // No log reader found.
2286 // A proper reader.
2287 $select = "userid = :userid AND courseid = :courseid AND eventname = :eventname AND timecreated > :since";
2288 $params = array('userid' => $USER->id, 'since' => $since, 'courseid' => $course->id, 'eventname' => '\core\event\course_created');
2290 return (bool)$reader->get_events_select_count($select, $params);
2294 * Save the Your name for 'Some role' strings.
2296 * @param integer $courseid the id of this course.
2297 * @param array $data the data that came from the course settings form.
2299 function save_local_role_names($courseid, $data) {
2300 global $DB;
2301 $context = context_course::instance($courseid);
2303 foreach ($data as $fieldname => $value) {
2304 if (strpos($fieldname, 'role_') !== 0) {
2305 continue;
2307 list($ignored, $roleid) = explode('_', $fieldname);
2309 // make up our mind whether we want to delete, update or insert
2310 if (!$value) {
2311 $DB->delete_records('role_names', array('contextid' => $context->id, 'roleid' => $roleid));
2313 } else if ($rolename = $DB->get_record('role_names', array('contextid' => $context->id, 'roleid' => $roleid))) {
2314 $rolename->name = $value;
2315 $DB->update_record('role_names', $rolename);
2317 } else {
2318 $rolename = new stdClass;
2319 $rolename->contextid = $context->id;
2320 $rolename->roleid = $roleid;
2321 $rolename->name = $value;
2322 $DB->insert_record('role_names', $rolename);
2324 // This will ensure the course contacts cache is purged..
2325 coursecat::role_assignment_changed($roleid, $context);
2330 * Returns options to use in course overviewfiles filemanager
2332 * @param null|stdClass|course_in_list|int $course either object that has 'id' property or just the course id;
2333 * may be empty if course does not exist yet (course create form)
2334 * @return array|null array of options such as maxfiles, maxbytes, accepted_types, etc.
2335 * or null if overviewfiles are disabled
2337 function course_overviewfiles_options($course) {
2338 global $CFG;
2339 if (empty($CFG->courseoverviewfileslimit)) {
2340 return null;
2342 $accepted_types = preg_split('/\s*,\s*/', trim($CFG->courseoverviewfilesext), -1, PREG_SPLIT_NO_EMPTY);
2343 if (in_array('*', $accepted_types) || empty($accepted_types)) {
2344 $accepted_types = '*';
2345 } else {
2346 // Since config for $CFG->courseoverviewfilesext is a text box, human factor must be considered.
2347 // Make sure extensions are prefixed with dot unless they are valid typegroups
2348 foreach ($accepted_types as $i => $type) {
2349 if (substr($type, 0, 1) !== '.') {
2350 require_once($CFG->libdir. '/filelib.php');
2351 if (!count(file_get_typegroup('extension', $type))) {
2352 // It does not start with dot and is not a valid typegroup, this is most likely extension.
2353 $accepted_types[$i] = '.'. $type;
2354 $corrected = true;
2358 if (!empty($corrected)) {
2359 set_config('courseoverviewfilesext', join(',', $accepted_types));
2362 $options = array(
2363 'maxfiles' => $CFG->courseoverviewfileslimit,
2364 'maxbytes' => $CFG->maxbytes,
2365 'subdirs' => 0,
2366 'accepted_types' => $accepted_types
2368 if (!empty($course->id)) {
2369 $options['context'] = context_course::instance($course->id);
2370 } else if (is_int($course) && $course > 0) {
2371 $options['context'] = context_course::instance($course);
2373 return $options;
2377 * Create a course and either return a $course object
2379 * Please note this functions does not verify any access control,
2380 * the calling code is responsible for all validation (usually it is the form definition).
2382 * @param array $editoroptions course description editor options
2383 * @param object $data - all the data needed for an entry in the 'course' table
2384 * @return object new course instance
2386 function create_course($data, $editoroptions = NULL) {
2387 global $DB, $CFG;
2389 //check the categoryid - must be given for all new courses
2390 $category = $DB->get_record('course_categories', array('id'=>$data->category), '*', MUST_EXIST);
2392 // Check if the shortname already exists.
2393 if (!empty($data->shortname)) {
2394 if ($DB->record_exists('course', array('shortname' => $data->shortname))) {
2395 throw new moodle_exception('shortnametaken', '', '', $data->shortname);
2399 // Check if the idnumber already exists.
2400 if (!empty($data->idnumber)) {
2401 if ($DB->record_exists('course', array('idnumber' => $data->idnumber))) {
2402 throw new moodle_exception('courseidnumbertaken', '', '', $data->idnumber);
2406 if ($errorcode = course_validate_dates((array)$data)) {
2407 throw new moodle_exception($errorcode);
2410 // Check if timecreated is given.
2411 $data->timecreated = !empty($data->timecreated) ? $data->timecreated : time();
2412 $data->timemodified = $data->timecreated;
2414 // place at beginning of any category
2415 $data->sortorder = 0;
2417 if ($editoroptions) {
2418 // summary text is updated later, we need context to store the files first
2419 $data->summary = '';
2420 $data->summary_format = FORMAT_HTML;
2423 if (!isset($data->visible)) {
2424 // data not from form, add missing visibility info
2425 $data->visible = $category->visible;
2427 $data->visibleold = $data->visible;
2429 $newcourseid = $DB->insert_record('course', $data);
2430 $context = context_course::instance($newcourseid, MUST_EXIST);
2432 if ($editoroptions) {
2433 // Save the files used in the summary editor and store
2434 $data = file_postupdate_standard_editor($data, 'summary', $editoroptions, $context, 'course', 'summary', 0);
2435 $DB->set_field('course', 'summary', $data->summary, array('id'=>$newcourseid));
2436 $DB->set_field('course', 'summaryformat', $data->summary_format, array('id'=>$newcourseid));
2438 if ($overviewfilesoptions = course_overviewfiles_options($newcourseid)) {
2439 // Save the course overviewfiles
2440 $data = file_postupdate_standard_filemanager($data, 'overviewfiles', $overviewfilesoptions, $context, 'course', 'overviewfiles', 0);
2443 // update course format options
2444 course_get_format($newcourseid)->update_course_format_options($data);
2446 $course = course_get_format($newcourseid)->get_course();
2448 fix_course_sortorder();
2449 // purge appropriate caches in case fix_course_sortorder() did not change anything
2450 cache_helper::purge_by_event('changesincourse');
2452 // new context created - better mark it as dirty
2453 $context->mark_dirty();
2455 // Trigger a course created event.
2456 $event = \core\event\course_created::create(array(
2457 'objectid' => $course->id,
2458 'context' => context_course::instance($course->id),
2459 'other' => array('shortname' => $course->shortname,
2460 'fullname' => $course->fullname)
2463 $event->trigger();
2465 // Setup the blocks
2466 blocks_add_default_course_blocks($course);
2468 // Create default section and initial sections if specified (unless they've already been created earlier).
2469 // We do not want to call course_create_sections_if_missing() because to avoid creating course cache.
2470 $numsections = isset($data->numsections) ? $data->numsections : 0;
2471 $existingsections = $DB->get_fieldset_sql('SELECT section from {course_sections} WHERE course = ?', [$newcourseid]);
2472 $newsections = array_diff(range(0, $numsections), $existingsections);
2473 foreach ($newsections as $sectionnum) {
2474 course_create_section($newcourseid, $sectionnum, true);
2477 // Save any custom role names.
2478 save_local_role_names($course->id, (array)$data);
2480 // set up enrolments
2481 enrol_course_updated(true, $course, $data);
2483 // Update course tags.
2484 if (isset($data->tags)) {
2485 core_tag_tag::set_item_tags('core', 'course', $course->id, context_course::instance($course->id), $data->tags);
2488 return $course;
2492 * Update a course.
2494 * Please note this functions does not verify any access control,
2495 * the calling code is responsible for all validation (usually it is the form definition).
2497 * @param object $data - all the data needed for an entry in the 'course' table
2498 * @param array $editoroptions course description editor options
2499 * @return void
2501 function update_course($data, $editoroptions = NULL) {
2502 global $DB, $CFG;
2504 $data->timemodified = time();
2506 // Prevent changes on front page course.
2507 if ($data->id == SITEID) {
2508 throw new moodle_exception('invalidcourse', 'error');
2511 $oldcourse = course_get_format($data->id)->get_course();
2512 $context = context_course::instance($oldcourse->id);
2514 if ($editoroptions) {
2515 $data = file_postupdate_standard_editor($data, 'summary', $editoroptions, $context, 'course', 'summary', 0);
2517 if ($overviewfilesoptions = course_overviewfiles_options($data->id)) {
2518 $data = file_postupdate_standard_filemanager($data, 'overviewfiles', $overviewfilesoptions, $context, 'course', 'overviewfiles', 0);
2521 // Check we don't have a duplicate shortname.
2522 if (!empty($data->shortname) && $oldcourse->shortname != $data->shortname) {
2523 if ($DB->record_exists_sql('SELECT id from {course} WHERE shortname = ? AND id <> ?', array($data->shortname, $data->id))) {
2524 throw new moodle_exception('shortnametaken', '', '', $data->shortname);
2528 // Check we don't have a duplicate idnumber.
2529 if (!empty($data->idnumber) && $oldcourse->idnumber != $data->idnumber) {
2530 if ($DB->record_exists_sql('SELECT id from {course} WHERE idnumber = ? AND id <> ?', array($data->idnumber, $data->id))) {
2531 throw new moodle_exception('courseidnumbertaken', '', '', $data->idnumber);
2535 if ($errorcode = course_validate_dates((array)$data)) {
2536 throw new moodle_exception($errorcode);
2539 if (!isset($data->category) or empty($data->category)) {
2540 // prevent nulls and 0 in category field
2541 unset($data->category);
2543 $changesincoursecat = $movecat = (isset($data->category) and $oldcourse->category != $data->category);
2545 if (!isset($data->visible)) {
2546 // data not from form, add missing visibility info
2547 $data->visible = $oldcourse->visible;
2550 if ($data->visible != $oldcourse->visible) {
2551 // reset the visibleold flag when manually hiding/unhiding course
2552 $data->visibleold = $data->visible;
2553 $changesincoursecat = true;
2554 } else {
2555 if ($movecat) {
2556 $newcategory = $DB->get_record('course_categories', array('id'=>$data->category));
2557 if (empty($newcategory->visible)) {
2558 // make sure when moving into hidden category the course is hidden automatically
2559 $data->visible = 0;
2564 // Set newsitems to 0 if format does not support announcements.
2565 if (isset($data->format)) {
2566 $newcourseformat = course_get_format((object)['format' => $data->format]);
2567 if (!$newcourseformat->supports_news()) {
2568 $data->newsitems = 0;
2572 // Update with the new data
2573 $DB->update_record('course', $data);
2574 // make sure the modinfo cache is reset
2575 rebuild_course_cache($data->id);
2577 // update course format options with full course data
2578 course_get_format($data->id)->update_course_format_options($data, $oldcourse);
2580 $course = $DB->get_record('course', array('id'=>$data->id));
2582 if ($movecat) {
2583 $newparent = context_coursecat::instance($course->category);
2584 $context->update_moved($newparent);
2586 $fixcoursesortorder = $movecat || (isset($data->sortorder) && ($oldcourse->sortorder != $data->sortorder));
2587 if ($fixcoursesortorder) {
2588 fix_course_sortorder();
2591 // purge appropriate caches in case fix_course_sortorder() did not change anything
2592 cache_helper::purge_by_event('changesincourse');
2593 if ($changesincoursecat) {
2594 cache_helper::purge_by_event('changesincoursecat');
2597 // Test for and remove blocks which aren't appropriate anymore
2598 blocks_remove_inappropriate($course);
2600 // Save any custom role names.
2601 save_local_role_names($course->id, $data);
2603 // update enrol settings
2604 enrol_course_updated(false, $course, $data);
2606 // Update course tags.
2607 if (isset($data->tags)) {
2608 core_tag_tag::set_item_tags('core', 'course', $course->id, context_course::instance($course->id), $data->tags);
2611 // Trigger a course updated event.
2612 $event = \core\event\course_updated::create(array(
2613 'objectid' => $course->id,
2614 'context' => context_course::instance($course->id),
2615 'other' => array('shortname' => $course->shortname,
2616 'fullname' => $course->fullname)
2619 $event->set_legacy_logdata(array($course->id, 'course', 'update', 'edit.php?id=' . $course->id, $course->id));
2620 $event->trigger();
2622 if ($oldcourse->format !== $course->format) {
2623 // Remove all options stored for the previous format
2624 // We assume that new course format migrated everything it needed watching trigger
2625 // 'course_updated' and in method format_XXX::update_course_format_options()
2626 $DB->delete_records('course_format_options',
2627 array('courseid' => $course->id, 'format' => $oldcourse->format));
2632 * Average number of participants
2633 * @return integer
2635 function average_number_of_participants() {
2636 global $DB, $SITE;
2638 //count total of enrolments for visible course (except front page)
2639 $sql = 'SELECT COUNT(*) FROM (
2640 SELECT DISTINCT ue.userid, e.courseid
2641 FROM {user_enrolments} ue, {enrol} e, {course} c
2642 WHERE ue.enrolid = e.id
2643 AND e.courseid <> :siteid
2644 AND c.id = e.courseid
2645 AND c.visible = 1) total';
2646 $params = array('siteid' => $SITE->id);
2647 $enrolmenttotal = $DB->count_records_sql($sql, $params);
2650 //count total of visible courses (minus front page)
2651 $coursetotal = $DB->count_records('course', array('visible' => 1));
2652 $coursetotal = $coursetotal - 1 ;
2654 //average of enrolment
2655 if (empty($coursetotal)) {
2656 $participantaverage = 0;
2657 } else {
2658 $participantaverage = $enrolmenttotal / $coursetotal;
2661 return $participantaverage;
2665 * Average number of course modules
2666 * @return integer
2668 function average_number_of_courses_modules() {
2669 global $DB, $SITE;
2671 //count total of visible course module (except front page)
2672 $sql = 'SELECT COUNT(*) FROM (
2673 SELECT cm.course, cm.module
2674 FROM {course} c, {course_modules} cm
2675 WHERE c.id = cm.course
2676 AND c.id <> :siteid
2677 AND cm.visible = 1
2678 AND c.visible = 1) total';
2679 $params = array('siteid' => $SITE->id);
2680 $moduletotal = $DB->count_records_sql($sql, $params);
2683 //count total of visible courses (minus front page)
2684 $coursetotal = $DB->count_records('course', array('visible' => 1));
2685 $coursetotal = $coursetotal - 1 ;
2687 //average of course module
2688 if (empty($coursetotal)) {
2689 $coursemoduleaverage = 0;
2690 } else {
2691 $coursemoduleaverage = $moduletotal / $coursetotal;
2694 return $coursemoduleaverage;
2698 * This class pertains to course requests and contains methods associated with
2699 * create, approving, and removing course requests.
2701 * Please note we do not allow embedded images here because there is no context
2702 * to store them with proper access control.
2704 * @copyright 2009 Sam Hemelryk
2705 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2706 * @since Moodle 2.0
2708 * @property-read int $id
2709 * @property-read string $fullname
2710 * @property-read string $shortname
2711 * @property-read string $summary
2712 * @property-read int $summaryformat
2713 * @property-read int $summarytrust
2714 * @property-read string $reason
2715 * @property-read int $requester
2717 class course_request {
2720 * This is the stdClass that stores the properties for the course request
2721 * and is externally accessed through the __get magic method
2722 * @var stdClass
2724 protected $properties;
2727 * An array of options for the summary editor used by course request forms.
2728 * This is initially set by {@link summary_editor_options()}
2729 * @var array
2730 * @static
2732 protected static $summaryeditoroptions;
2735 * Static function to prepare the summary editor for working with a course
2736 * request.
2738 * @static
2739 * @param null|stdClass $data Optional, an object containing the default values
2740 * for the form, these may be modified when preparing the
2741 * editor so this should be called before creating the form
2742 * @return stdClass An object that can be used to set the default values for
2743 * an mforms form
2745 public static function prepare($data=null) {
2746 if ($data === null) {
2747 $data = new stdClass;
2749 $data = file_prepare_standard_editor($data, 'summary', self::summary_editor_options());
2750 return $data;
2754 * Static function to create a new course request when passed an array of properties
2755 * for it.
2757 * This function also handles saving any files that may have been used in the editor
2759 * @static
2760 * @param stdClass $data
2761 * @return course_request The newly created course request
2763 public static function create($data) {
2764 global $USER, $DB, $CFG;
2765 $data->requester = $USER->id;
2767 // Setting the default category if none set.
2768 if (empty($data->category) || empty($CFG->requestcategoryselection)) {
2769 $data->category = $CFG->defaultrequestcategory;
2772 // Summary is a required field so copy the text over
2773 $data->summary = $data->summary_editor['text'];
2774 $data->summaryformat = $data->summary_editor['format'];
2776 $data->id = $DB->insert_record('course_request', $data);
2778 // Create a new course_request object and return it
2779 $request = new course_request($data);
2781 // Notify the admin if required.
2782 if ($users = get_users_from_config($CFG->courserequestnotify, 'moodle/site:approvecourse')) {
2784 $a = new stdClass;
2785 $a->link = "$CFG->wwwroot/course/pending.php";
2786 $a->user = fullname($USER);
2787 $subject = get_string('courserequest');
2788 $message = get_string('courserequestnotifyemail', 'admin', $a);
2789 foreach ($users as $user) {
2790 $request->notify($user, $USER, 'courserequested', $subject, $message);
2794 return $request;
2798 * Returns an array of options to use with a summary editor
2800 * @uses course_request::$summaryeditoroptions
2801 * @return array An array of options to use with the editor
2803 public static function summary_editor_options() {
2804 global $CFG;
2805 if (self::$summaryeditoroptions === null) {
2806 self::$summaryeditoroptions = array('maxfiles' => 0, 'maxbytes'=>0);
2808 return self::$summaryeditoroptions;
2812 * Loads the properties for this course request object. Id is required and if
2813 * only id is provided then we load the rest of the properties from the database
2815 * @param stdClass|int $properties Either an object containing properties
2816 * or the course_request id to load
2818 public function __construct($properties) {
2819 global $DB;
2820 if (empty($properties->id)) {
2821 if (empty($properties)) {
2822 throw new coding_exception('You must provide a course request id when creating a course_request object');
2824 $id = $properties;
2825 $properties = new stdClass;
2826 $properties->id = (int)$id;
2827 unset($id);
2829 if (empty($properties->requester)) {
2830 if (!($this->properties = $DB->get_record('course_request', array('id' => $properties->id)))) {
2831 print_error('unknowncourserequest');
2833 } else {
2834 $this->properties = $properties;
2836 $this->properties->collision = null;
2840 * Returns the requested property
2842 * @param string $key
2843 * @return mixed
2845 public function __get($key) {
2846 return $this->properties->$key;
2850 * Override this to ensure empty($request->blah) calls return a reliable answer...
2852 * This is required because we define the __get method
2854 * @param mixed $key
2855 * @return bool True is it not empty, false otherwise
2857 public function __isset($key) {
2858 return (!empty($this->properties->$key));
2862 * Returns the user who requested this course
2864 * Uses a static var to cache the results and cut down the number of db queries
2866 * @staticvar array $requesters An array of cached users
2867 * @return stdClass The user who requested the course
2869 public function get_requester() {
2870 global $DB;
2871 static $requesters= array();
2872 if (!array_key_exists($this->properties->requester, $requesters)) {
2873 $requesters[$this->properties->requester] = $DB->get_record('user', array('id'=>$this->properties->requester));
2875 return $requesters[$this->properties->requester];
2879 * Checks that the shortname used by the course does not conflict with any other
2880 * courses that exist
2882 * @param string|null $shortnamemark The string to append to the requests shortname
2883 * should a conflict be found
2884 * @return bool true is there is a conflict, false otherwise
2886 public function check_shortname_collision($shortnamemark = '[*]') {
2887 global $DB;
2889 if ($this->properties->collision !== null) {
2890 return $this->properties->collision;
2893 if (empty($this->properties->shortname)) {
2894 debugging('Attempting to check a course request shortname before it has been set', DEBUG_DEVELOPER);
2895 $this->properties->collision = false;
2896 } else if ($DB->record_exists('course', array('shortname' => $this->properties->shortname))) {
2897 if (!empty($shortnamemark)) {
2898 $this->properties->shortname .= ' '.$shortnamemark;
2900 $this->properties->collision = true;
2901 } else {
2902 $this->properties->collision = false;
2904 return $this->properties->collision;
2908 * Returns the category where this course request should be created
2910 * Note that we don't check here that user has a capability to view
2911 * hidden categories if he has capabilities 'moodle/site:approvecourse' and
2912 * 'moodle/course:changecategory'
2914 * @return coursecat
2916 public function get_category() {
2917 global $CFG;
2918 require_once($CFG->libdir.'/coursecatlib.php');
2919 // If the category is not set, if the current user does not have the rights to change the category, or if the
2920 // category does not exist, we set the default category to the course to be approved.
2921 // The system level is used because the capability moodle/site:approvecourse is based on a system level.
2922 if (empty($this->properties->category) || !has_capability('moodle/course:changecategory', context_system::instance()) ||
2923 (!$category = coursecat::get($this->properties->category, IGNORE_MISSING, true))) {
2924 $category = coursecat::get($CFG->defaultrequestcategory, IGNORE_MISSING, true);
2926 if (!$category) {
2927 $category = coursecat::get_default();
2929 return $category;
2933 * This function approves the request turning it into a course
2935 * This function converts the course request into a course, at the same time
2936 * transferring any files used in the summary to the new course and then removing
2937 * the course request and the files associated with it.
2939 * @return int The id of the course that was created from this request
2941 public function approve() {
2942 global $CFG, $DB, $USER;
2944 require_once($CFG->dirroot . '/backup/util/includes/restore_includes.php');
2946 $user = $DB->get_record('user', array('id' => $this->properties->requester, 'deleted'=>0), '*', MUST_EXIST);
2948 $courseconfig = get_config('moodlecourse');
2950 // Transfer appropriate settings
2951 $data = clone($this->properties);
2952 unset($data->id);
2953 unset($data->reason);
2954 unset($data->requester);
2956 // Set category
2957 $category = $this->get_category();
2958 $data->category = $category->id;
2959 // Set misc settings
2960 $data->requested = 1;
2962 // Apply course default settings
2963 $data->format = $courseconfig->format;
2964 $data->newsitems = $courseconfig->newsitems;
2965 $data->showgrades = $courseconfig->showgrades;
2966 $data->showreports = $courseconfig->showreports;
2967 $data->maxbytes = $courseconfig->maxbytes;
2968 $data->groupmode = $courseconfig->groupmode;
2969 $data->groupmodeforce = $courseconfig->groupmodeforce;
2970 $data->visible = $courseconfig->visible;
2971 $data->visibleold = $data->visible;
2972 $data->lang = $courseconfig->lang;
2973 $data->enablecompletion = $courseconfig->enablecompletion;
2974 $data->numsections = $courseconfig->numsections;
2975 $data->startdate = usergetmidnight(time());
2976 if ($courseconfig->courseenddateenabled) {
2977 $data->enddate = usergetmidnight(time()) + $courseconfig->courseduration;
2980 list($data->fullname, $data->shortname) = restore_dbops::calculate_course_names(0, $data->fullname, $data->shortname);
2982 $course = create_course($data);
2983 $context = context_course::instance($course->id, MUST_EXIST);
2985 // add enrol instances
2986 if (!$DB->record_exists('enrol', array('courseid'=>$course->id, 'enrol'=>'manual'))) {
2987 if ($manual = enrol_get_plugin('manual')) {
2988 $manual->add_default_instance($course);
2992 // enrol the requester as teacher if necessary
2993 if (!empty($CFG->creatornewroleid) and !is_viewing($context, $user, 'moodle/role:assign') and !is_enrolled($context, $user, 'moodle/role:assign')) {
2994 enrol_try_internal_enrol($course->id, $user->id, $CFG->creatornewroleid);
2997 $this->delete();
2999 $a = new stdClass();
3000 $a->name = format_string($course->fullname, true, array('context' => context_course::instance($course->id)));
3001 $a->url = $CFG->wwwroot.'/course/view.php?id=' . $course->id;
3002 $this->notify($user, $USER, 'courserequestapproved', get_string('courseapprovedsubject'), get_string('courseapprovedemail2', 'moodle', $a), $course->id);
3004 return $course->id;
3008 * Reject a course request
3010 * This function rejects a course request, emailing the requesting user the
3011 * provided notice and then removing the request from the database
3013 * @param string $notice The message to display to the user
3015 public function reject($notice) {
3016 global $USER, $DB;
3017 $user = $DB->get_record('user', array('id' => $this->properties->requester), '*', MUST_EXIST);
3018 $this->notify($user, $USER, 'courserequestrejected', get_string('courserejectsubject'), get_string('courserejectemail', 'moodle', $notice));
3019 $this->delete();
3023 * Deletes the course request and any associated files
3025 public function delete() {
3026 global $DB;
3027 $DB->delete_records('course_request', array('id' => $this->properties->id));
3031 * Send a message from one user to another using events_trigger
3033 * @param object $touser
3034 * @param object $fromuser
3035 * @param string $name
3036 * @param string $subject
3037 * @param string $message
3038 * @param int|null $courseid
3040 protected function notify($touser, $fromuser, $name='courserequested', $subject, $message, $courseid = null) {
3041 $eventdata = new \core\message\message();
3042 $eventdata->courseid = empty($courseid) ? SITEID : $courseid;
3043 $eventdata->component = 'moodle';
3044 $eventdata->name = $name;
3045 $eventdata->userfrom = $fromuser;
3046 $eventdata->userto = $touser;
3047 $eventdata->subject = $subject;
3048 $eventdata->fullmessage = $message;
3049 $eventdata->fullmessageformat = FORMAT_PLAIN;
3050 $eventdata->fullmessagehtml = '';
3051 $eventdata->smallmessage = '';
3052 $eventdata->notification = 1;
3053 message_send($eventdata);
3058 * Return a list of page types
3059 * @param string $pagetype current page type
3060 * @param context $parentcontext Block's parent context
3061 * @param context $currentcontext Current context of block
3062 * @return array array of page types
3064 function course_page_type_list($pagetype, $parentcontext, $currentcontext) {
3065 if ($pagetype === 'course-index' || $pagetype === 'course-index-category') {
3066 // For courses and categories browsing pages (/course/index.php) add option to show on ANY category page
3067 $pagetypes = array('*' => get_string('page-x', 'pagetype'),
3068 'course-index-*' => get_string('page-course-index-x', 'pagetype'),
3070 } else if ($currentcontext && (!($coursecontext = $currentcontext->get_course_context(false)) || $coursecontext->instanceid == SITEID)) {
3071 // We know for sure that despite pagetype starts with 'course-' this is not a page in course context (i.e. /course/search.php, etc.)
3072 $pagetypes = array('*' => get_string('page-x', 'pagetype'));
3073 } else {
3074 // Otherwise consider it a page inside a course even if $currentcontext is null
3075 $pagetypes = array('*' => get_string('page-x', 'pagetype'),
3076 'course-*' => get_string('page-course-x', 'pagetype'),
3077 'course-view-*' => get_string('page-course-view-x', 'pagetype')
3080 return $pagetypes;
3084 * Determine whether course ajax should be enabled for the specified course
3086 * @param stdClass $course The course to test against
3087 * @return boolean Whether course ajax is enabled or note
3089 function course_ajax_enabled($course) {
3090 global $CFG, $PAGE, $SITE;
3092 // The user must be editing for AJAX to be included
3093 if (!$PAGE->user_is_editing()) {
3094 return false;
3097 // Check that the theme suports
3098 if (!$PAGE->theme->enablecourseajax) {
3099 return false;
3102 // Check that the course format supports ajax functionality
3103 // The site 'format' doesn't have information on course format support
3104 if ($SITE->id !== $course->id) {
3105 $courseformatajaxsupport = course_format_ajax_support($course->format);
3106 if (!$courseformatajaxsupport->capable) {
3107 return false;
3111 // All conditions have been met so course ajax should be enabled
3112 return true;
3116 * Include the relevant javascript and language strings for the resource
3117 * toolbox YUI module
3119 * @param integer $id The ID of the course being applied to
3120 * @param array $usedmodules An array containing the names of the modules in use on the page
3121 * @param array $enabledmodules An array containing the names of the enabled (visible) modules on this site
3122 * @param stdClass $config An object containing configuration parameters for ajax modules including:
3123 * * resourceurl The URL to post changes to for resource changes
3124 * * sectionurl The URL to post changes to for section changes
3125 * * pageparams Additional parameters to pass through in the post
3126 * @return bool
3128 function include_course_ajax($course, $usedmodules = array(), $enabledmodules = null, $config = null) {
3129 global $CFG, $PAGE, $SITE;
3131 // Ensure that ajax should be included
3132 if (!course_ajax_enabled($course)) {
3133 return false;
3136 if (!$config) {
3137 $config = new stdClass();
3140 // The URL to use for resource changes
3141 if (!isset($config->resourceurl)) {
3142 $config->resourceurl = '/course/rest.php';
3145 // The URL to use for section changes
3146 if (!isset($config->sectionurl)) {
3147 $config->sectionurl = '/course/rest.php';
3150 // Any additional parameters which need to be included on page submission
3151 if (!isset($config->pageparams)) {
3152 $config->pageparams = array();
3155 // Include course dragdrop
3156 if (course_format_uses_sections($course->format)) {
3157 $PAGE->requires->yui_module('moodle-course-dragdrop', 'M.course.init_section_dragdrop',
3158 array(array(
3159 'courseid' => $course->id,
3160 'ajaxurl' => $config->sectionurl,
3161 'config' => $config,
3162 )), null, true);
3164 $PAGE->requires->yui_module('moodle-course-dragdrop', 'M.course.init_resource_dragdrop',
3165 array(array(
3166 'courseid' => $course->id,
3167 'ajaxurl' => $config->resourceurl,
3168 'config' => $config,
3169 )), null, true);
3172 // Require various strings for the command toolbox
3173 $PAGE->requires->strings_for_js(array(
3174 'moveleft',
3175 'deletechecktype',
3176 'deletechecktypename',
3177 'edittitle',
3178 'edittitleinstructions',
3179 'show',
3180 'hide',
3181 'highlight',
3182 'highlightoff',
3183 'groupsnone',
3184 'groupsvisible',
3185 'groupsseparate',
3186 'clicktochangeinbrackets',
3187 'markthistopic',
3188 'markedthistopic',
3189 'movesection',
3190 'movecoursemodule',
3191 'movecoursesection',
3192 'movecontent',
3193 'tocontent',
3194 'emptydragdropregion',
3195 'afterresource',
3196 'aftersection',
3197 'totopofsection',
3198 ), 'moodle');
3200 // Include section-specific strings for formats which support sections.
3201 if (course_format_uses_sections($course->format)) {
3202 $PAGE->requires->strings_for_js(array(
3203 'showfromothers',
3204 'hidefromothers',
3205 ), 'format_' . $course->format);
3208 // For confirming resource deletion we need the name of the module in question
3209 foreach ($usedmodules as $module => $modname) {
3210 $PAGE->requires->string_for_js('pluginname', $module);
3213 // Load drag and drop upload AJAX.
3214 require_once($CFG->dirroot.'/course/dnduploadlib.php');
3215 dndupload_add_to_course($course, $enabledmodules);
3217 $PAGE->requires->js_call_amd('core_course/actions', 'initCoursePage', array($course->format));
3219 return true;
3223 * Returns the sorted list of available course formats, filtered by enabled if necessary
3225 * @param bool $enabledonly return only formats that are enabled
3226 * @return array array of sorted format names
3228 function get_sorted_course_formats($enabledonly = false) {
3229 global $CFG;
3230 $formats = core_component::get_plugin_list('format');
3232 if (!empty($CFG->format_plugins_sortorder)) {
3233 $order = explode(',', $CFG->format_plugins_sortorder);
3234 $order = array_merge(array_intersect($order, array_keys($formats)),
3235 array_diff(array_keys($formats), $order));
3236 } else {
3237 $order = array_keys($formats);
3239 if (!$enabledonly) {
3240 return $order;
3242 $sortedformats = array();
3243 foreach ($order as $formatname) {
3244 if (!get_config('format_'.$formatname, 'disabled')) {
3245 $sortedformats[] = $formatname;
3248 return $sortedformats;
3252 * The URL to use for the specified course (with section)
3254 * @param int|stdClass $courseorid The course to get the section name for (either object or just course id)
3255 * @param int|stdClass $section Section object from database or just field course_sections.section
3256 * if omitted the course view page is returned
3257 * @param array $options options for view URL. At the moment core uses:
3258 * 'navigation' (bool) if true and section has no separate page, the function returns null
3259 * 'sr' (int) used by multipage formats to specify to which section to return
3260 * @return moodle_url The url of course
3262 function course_get_url($courseorid, $section = null, $options = array()) {
3263 return course_get_format($courseorid)->get_view_url($section, $options);
3267 * Create a module.
3269 * It includes:
3270 * - capability checks and other checks
3271 * - create the module from the module info
3273 * @param object $module
3274 * @return object the created module info
3275 * @throws moodle_exception if user is not allowed to perform the action or module is not allowed in this course
3277 function create_module($moduleinfo) {
3278 global $DB, $CFG;
3280 require_once($CFG->dirroot . '/course/modlib.php');
3282 // Check manadatory attributs.
3283 $mandatoryfields = array('modulename', 'course', 'section', 'visible');
3284 if (plugin_supports('mod', $moduleinfo->modulename, FEATURE_MOD_INTRO, true)) {
3285 $mandatoryfields[] = 'introeditor';
3287 foreach($mandatoryfields as $mandatoryfield) {
3288 if (!isset($moduleinfo->{$mandatoryfield})) {
3289 throw new moodle_exception('createmodulemissingattribut', '', '', $mandatoryfield);
3293 // Some additional checks (capability / existing instances).
3294 $course = $DB->get_record('course', array('id'=>$moduleinfo->course), '*', MUST_EXIST);
3295 list($module, $context, $cw) = can_add_moduleinfo($course, $moduleinfo->modulename, $moduleinfo->section);
3297 // Add the module.
3298 $moduleinfo->module = $module->id;
3299 $moduleinfo = add_moduleinfo($moduleinfo, $course, null);
3301 return $moduleinfo;
3305 * Update a module.
3307 * It includes:
3308 * - capability and other checks
3309 * - update the module
3311 * @param object $module
3312 * @return object the updated module info
3313 * @throws moodle_exception if current user is not allowed to update the module
3315 function update_module($moduleinfo) {
3316 global $DB, $CFG;
3318 require_once($CFG->dirroot . '/course/modlib.php');
3320 // Check the course module exists.
3321 $cm = get_coursemodule_from_id('', $moduleinfo->coursemodule, 0, false, MUST_EXIST);
3323 // Check the course exists.
3324 $course = $DB->get_record('course', array('id'=>$cm->course), '*', MUST_EXIST);
3326 // Some checks (capaibility / existing instances).
3327 list($cm, $context, $module, $data, $cw) = can_update_moduleinfo($cm);
3329 // Retrieve few information needed by update_moduleinfo.
3330 $moduleinfo->modulename = $cm->modname;
3331 if (!isset($moduleinfo->scale)) {
3332 $moduleinfo->scale = 0;
3334 $moduleinfo->type = 'mod';
3336 // Update the module.
3337 list($cm, $moduleinfo) = update_moduleinfo($cm, $moduleinfo, $course, null);
3339 return $moduleinfo;
3343 * Duplicate a module on the course for ajax.
3345 * @see mod_duplicate_module()
3346 * @param object $course The course
3347 * @param object $cm The course module to duplicate
3348 * @param int $sr The section to link back to (used for creating the links)
3349 * @throws moodle_exception if the plugin doesn't support duplication
3350 * @return Object containing:
3351 * - fullcontent: The HTML markup for the created CM
3352 * - cmid: The CMID of the newly created CM
3353 * - redirect: Whether to trigger a redirect following this change
3355 function mod_duplicate_activity($course, $cm, $sr = null) {
3356 global $PAGE;
3358 $newcm = duplicate_module($course, $cm);
3360 $resp = new stdClass();
3361 if ($newcm) {
3362 $courserenderer = $PAGE->get_renderer('core', 'course');
3363 $completioninfo = new completion_info($course);
3364 $modulehtml = $courserenderer->course_section_cm($course, $completioninfo,
3365 $newcm, null, array());
3367 $resp->fullcontent = $courserenderer->course_section_cm_list_item($course, $completioninfo, $newcm, $sr);
3368 $resp->cmid = $newcm->id;
3369 } else {
3370 // Trigger a redirect.
3371 $resp->redirect = true;
3373 return $resp;
3377 * Api to duplicate a module.
3379 * @param object $course course object.
3380 * @param object $cm course module object to be duplicated.
3381 * @since Moodle 2.8
3383 * @throws Exception
3384 * @throws coding_exception
3385 * @throws moodle_exception
3386 * @throws restore_controller_exception
3388 * @return cm_info|null cminfo object if we sucessfully duplicated the mod and found the new cm.
3390 function duplicate_module($course, $cm) {
3391 global $CFG, $DB, $USER;
3392 require_once($CFG->dirroot . '/backup/util/includes/backup_includes.php');
3393 require_once($CFG->dirroot . '/backup/util/includes/restore_includes.php');
3394 require_once($CFG->libdir . '/filelib.php');
3396 $a = new stdClass();
3397 $a->modtype = get_string('modulename', $cm->modname);
3398 $a->modname = format_string($cm->name);
3400 if (!plugin_supports('mod', $cm->modname, FEATURE_BACKUP_MOODLE2)) {
3401 throw new moodle_exception('duplicatenosupport', 'error', '', $a);
3404 // Backup the activity.
3406 $bc = new backup_controller(backup::TYPE_1ACTIVITY, $cm->id, backup::FORMAT_MOODLE,
3407 backup::INTERACTIVE_NO, backup::MODE_IMPORT, $USER->id);
3409 $backupid = $bc->get_backupid();
3410 $backupbasepath = $bc->get_plan()->get_basepath();
3412 $bc->execute_plan();
3414 $bc->destroy();
3416 // Restore the backup immediately.
3418 $rc = new restore_controller($backupid, $course->id,
3419 backup::INTERACTIVE_NO, backup::MODE_IMPORT, $USER->id, backup::TARGET_CURRENT_ADDING);
3421 $cmcontext = context_module::instance($cm->id);
3422 if (!$rc->execute_precheck()) {
3423 $precheckresults = $rc->get_precheck_results();
3424 if (is_array($precheckresults) && !empty($precheckresults['errors'])) {
3425 if (empty($CFG->keeptempdirectoriesonbackup)) {
3426 fulldelete($backupbasepath);
3431 $rc->execute_plan();
3433 // Now a bit hacky part follows - we try to get the cmid of the newly
3434 // restored copy of the module.
3435 $newcmid = null;
3436 $tasks = $rc->get_plan()->get_tasks();
3437 foreach ($tasks as $task) {
3438 if (is_subclass_of($task, 'restore_activity_task')) {
3439 if ($task->get_old_contextid() == $cmcontext->id) {
3440 $newcmid = $task->get_moduleid();
3441 break;
3446 $rc->destroy();
3448 if (empty($CFG->keeptempdirectoriesonbackup)) {
3449 fulldelete($backupbasepath);
3452 // If we know the cmid of the new course module, let us move it
3453 // right below the original one. otherwise it will stay at the
3454 // end of the section.
3455 if ($newcmid) {
3456 $section = $DB->get_record('course_sections', array('id' => $cm->section, 'course' => $cm->course));
3457 $modarray = explode(",", trim($section->sequence));
3458 $cmindex = array_search($cm->id, $modarray);
3459 if ($cmindex !== false && $cmindex < count($modarray) - 1) {
3460 $newcm = get_coursemodule_from_id($cm->modname, $newcmid, $cm->course);
3461 moveto_module($newcm, $section, $modarray[$cmindex + 1]);
3464 // Update calendar events with the duplicated module.
3465 // The following line is to be removed in MDL-58906.
3466 course_module_update_calendar_events($newcm->modname, null, $newcm);
3468 // Trigger course module created event. We can trigger the event only if we know the newcmid.
3469 $newcm = get_fast_modinfo($cm->course)->get_cm($newcmid);
3470 $event = \core\event\course_module_created::create_from_cm($newcm);
3471 $event->trigger();
3474 return isset($newcm) ? $newcm : null;
3478 * Compare two objects to find out their correct order based on timestamp (to be used by usort).
3479 * Sorts by descending order of time.
3481 * @param stdClass $a First object
3482 * @param stdClass $b Second object
3483 * @return int 0,1,-1 representing the order
3485 function compare_activities_by_time_desc($a, $b) {
3486 // Make sure the activities actually have a timestamp property.
3487 if ((!property_exists($a, 'timestamp')) && (!property_exists($b, 'timestamp'))) {
3488 return 0;
3490 // We treat instances without timestamp as if they have a timestamp of 0.
3491 if ((!property_exists($a, 'timestamp')) && (property_exists($b,'timestamp'))) {
3492 return 1;
3494 if ((property_exists($a, 'timestamp')) && (!property_exists($b, 'timestamp'))) {
3495 return -1;
3497 if ($a->timestamp == $b->timestamp) {
3498 return 0;
3500 return ($a->timestamp > $b->timestamp) ? -1 : 1;
3504 * Compare two objects to find out their correct order based on timestamp (to be used by usort).
3505 * Sorts by ascending order of time.
3507 * @param stdClass $a First object
3508 * @param stdClass $b Second object
3509 * @return int 0,1,-1 representing the order
3511 function compare_activities_by_time_asc($a, $b) {
3512 // Make sure the activities actually have a timestamp property.
3513 if ((!property_exists($a, 'timestamp')) && (!property_exists($b, 'timestamp'))) {
3514 return 0;
3516 // We treat instances without timestamp as if they have a timestamp of 0.
3517 if ((!property_exists($a, 'timestamp')) && (property_exists($b, 'timestamp'))) {
3518 return -1;
3520 if ((property_exists($a, 'timestamp')) && (!property_exists($b, 'timestamp'))) {
3521 return 1;
3523 if ($a->timestamp == $b->timestamp) {
3524 return 0;
3526 return ($a->timestamp < $b->timestamp) ? -1 : 1;
3530 * Changes the visibility of a course.
3532 * @param int $courseid The course to change.
3533 * @param bool $show True to make it visible, false otherwise.
3534 * @return bool
3536 function course_change_visibility($courseid, $show = true) {
3537 $course = new stdClass;
3538 $course->id = $courseid;
3539 $course->visible = ($show) ? '1' : '0';
3540 $course->visibleold = $course->visible;
3541 update_course($course);
3542 return true;
3546 * Changes the course sortorder by one, moving it up or down one in respect to sort order.
3548 * @param stdClass|course_in_list $course
3549 * @param bool $up If set to true the course will be moved up one. Otherwise down one.
3550 * @return bool
3552 function course_change_sortorder_by_one($course, $up) {
3553 global $DB;
3554 $params = array($course->sortorder, $course->category);
3555 if ($up) {
3556 $select = 'sortorder < ? AND category = ?';
3557 $sort = 'sortorder DESC';
3558 } else {
3559 $select = 'sortorder > ? AND category = ?';
3560 $sort = 'sortorder ASC';
3562 fix_course_sortorder();
3563 $swapcourse = $DB->get_records_select('course', $select, $params, $sort, '*', 0, 1);
3564 if ($swapcourse) {
3565 $swapcourse = reset($swapcourse);
3566 $DB->set_field('course', 'sortorder', $swapcourse->sortorder, array('id' => $course->id));
3567 $DB->set_field('course', 'sortorder', $course->sortorder, array('id' => $swapcourse->id));
3568 // Finally reorder courses.
3569 fix_course_sortorder();
3570 cache_helper::purge_by_event('changesincourse');
3571 return true;
3573 return false;
3577 * Changes the sort order of courses in a category so that the first course appears after the second.
3579 * @param int|stdClass $courseorid The course to focus on.
3580 * @param int $moveaftercourseid The course to shifter after or 0 if you want it to be the first course in the category.
3581 * @return bool
3583 function course_change_sortorder_after_course($courseorid, $moveaftercourseid) {
3584 global $DB;
3586 if (!is_object($courseorid)) {
3587 $course = get_course($courseorid);
3588 } else {
3589 $course = $courseorid;
3592 if ((int)$moveaftercourseid === 0) {
3593 // We've moving the course to the start of the queue.
3594 $sql = 'SELECT sortorder
3595 FROM {course}
3596 WHERE category = :categoryid
3597 ORDER BY sortorder';
3598 $params = array(
3599 'categoryid' => $course->category
3601 $sortorder = $DB->get_field_sql($sql, $params, IGNORE_MULTIPLE);
3603 $sql = 'UPDATE {course}
3604 SET sortorder = sortorder + 1
3605 WHERE category = :categoryid
3606 AND id <> :id';
3607 $params = array(
3608 'categoryid' => $course->category,
3609 'id' => $course->id,
3611 $DB->execute($sql, $params);
3612 $DB->set_field('course', 'sortorder', $sortorder, array('id' => $course->id));
3613 } else if ($course->id === $moveaftercourseid) {
3614 // They're the same - moronic.
3615 debugging("Invalid move after course given.", DEBUG_DEVELOPER);
3616 return false;
3617 } else {
3618 // Moving this course after the given course. It could be before it could be after.
3619 $moveaftercourse = get_course($moveaftercourseid);
3620 if ($course->category !== $moveaftercourse->category) {
3621 debugging("Cannot re-order courses. The given courses do not belong to the same category.", DEBUG_DEVELOPER);
3622 return false;
3624 // Increment all courses in the same category that are ordered after the moveafter course.
3625 // This makes a space for the course we're moving.
3626 $sql = 'UPDATE {course}
3627 SET sortorder = sortorder + 1
3628 WHERE category = :categoryid
3629 AND sortorder > :sortorder';
3630 $params = array(
3631 'categoryid' => $moveaftercourse->category,
3632 'sortorder' => $moveaftercourse->sortorder
3634 $DB->execute($sql, $params);
3635 $DB->set_field('course', 'sortorder', $moveaftercourse->sortorder + 1, array('id' => $course->id));
3637 fix_course_sortorder();
3638 cache_helper::purge_by_event('changesincourse');
3639 return true;
3643 * Trigger course viewed event. This API function is used when course view actions happens,
3644 * usually in course/view.php but also in external functions.
3646 * @param stdClass $context course context object
3647 * @param int $sectionnumber section number
3648 * @since Moodle 2.9
3650 function course_view($context, $sectionnumber = 0) {
3652 $eventdata = array('context' => $context);
3654 if (!empty($sectionnumber)) {
3655 $eventdata['other']['coursesectionnumber'] = $sectionnumber;
3658 $event = \core\event\course_viewed::create($eventdata);
3659 $event->trigger();
3663 * Returns courses tagged with a specified tag.
3665 * @param core_tag_tag $tag
3666 * @param bool $exclusivemode if set to true it means that no other entities tagged with this tag
3667 * are displayed on the page and the per-page limit may be bigger
3668 * @param int $fromctx context id where the link was displayed, may be used by callbacks
3669 * to display items in the same context first
3670 * @param int $ctx context id where to search for records
3671 * @param bool $rec search in subcontexts as well
3672 * @param int $page 0-based number of page being displayed
3673 * @return \core_tag\output\tagindex
3675 function course_get_tagged_courses($tag, $exclusivemode = false, $fromctx = 0, $ctx = 0, $rec = 1, $page = 0) {
3676 global $CFG, $PAGE;
3677 require_once($CFG->libdir . '/coursecatlib.php');
3679 $perpage = $exclusivemode ? $CFG->coursesperpage : 5;
3680 $displayoptions = array(
3681 'limit' => $perpage,
3682 'offset' => $page * $perpage,
3683 'viewmoreurl' => null,
3686 $courserenderer = $PAGE->get_renderer('core', 'course');
3687 $totalcount = coursecat::search_courses_count(array('tagid' => $tag->id, 'ctx' => $ctx, 'rec' => $rec));
3688 $content = $courserenderer->tagged_courses($tag->id, $exclusivemode, $ctx, $rec, $displayoptions);
3689 $totalpages = ceil($totalcount / $perpage);
3691 return new core_tag\output\tagindex($tag, 'core', 'course', $content,
3692 $exclusivemode, $fromctx, $ctx, $rec, $page, $totalpages);
3696 * Implements callback inplace_editable() allowing to edit values in-place
3698 * @param string $itemtype
3699 * @param int $itemid
3700 * @param mixed $newvalue
3701 * @return \core\output\inplace_editable
3703 function core_course_inplace_editable($itemtype, $itemid, $newvalue) {
3704 if ($itemtype === 'activityname') {
3705 return \core_course\output\course_module_name::update($itemid, $newvalue);
3710 * Returns course modules tagged with a specified tag ready for output on tag/index.php page
3712 * This is a callback used by the tag area core/course_modules to search for course modules
3713 * tagged with a specific tag.
3715 * @param core_tag_tag $tag
3716 * @param bool $exclusivemode if set to true it means that no other entities tagged with this tag
3717 * are displayed on the page and the per-page limit may be bigger
3718 * @param int $fromcontextid context id where the link was displayed, may be used by callbacks
3719 * to display items in the same context first
3720 * @param int $contextid context id where to search for records
3721 * @param bool $recursivecontext search in subcontexts as well
3722 * @param int $page 0-based number of page being displayed
3723 * @return \core_tag\output\tagindex
3725 function course_get_tagged_course_modules($tag, $exclusivemode = false, $fromcontextid = 0, $contextid = 0,
3726 $recursivecontext = 1, $page = 0) {
3727 global $OUTPUT;
3728 $perpage = $exclusivemode ? 20 : 5;
3730 // Build select query.
3731 $ctxselect = context_helper::get_preload_record_columns_sql('ctx');
3732 $query = "SELECT cm.id AS cmid, c.id AS courseid, $ctxselect
3733 FROM {course_modules} cm
3734 JOIN {tag_instance} tt ON cm.id = tt.itemid
3735 JOIN {course} c ON cm.course = c.id
3736 JOIN {context} ctx ON ctx.instanceid = cm.id AND ctx.contextlevel = :coursemodulecontextlevel
3737 WHERE tt.itemtype = :itemtype AND tt.tagid = :tagid AND tt.component = :component
3738 AND cm.deletioninprogress = 0
3739 AND c.id %COURSEFILTER% AND cm.id %ITEMFILTER%";
3741 $params = array('itemtype' => 'course_modules', 'tagid' => $tag->id, 'component' => 'core',
3742 'coursemodulecontextlevel' => CONTEXT_MODULE);
3743 if ($contextid) {
3744 $context = context::instance_by_id($contextid);
3745 $query .= $recursivecontext ? ' AND (ctx.id = :contextid OR ctx.path LIKE :path)' : ' AND ctx.id = :contextid';
3746 $params['contextid'] = $context->id;
3747 $params['path'] = $context->path.'/%';
3750 $query .= ' ORDER BY';
3751 if ($fromcontextid) {
3752 // In order-clause specify that modules from inside "fromctx" context should be returned first.
3753 $fromcontext = context::instance_by_id($fromcontextid);
3754 $query .= ' (CASE WHEN ctx.id = :fromcontextid OR ctx.path LIKE :frompath THEN 0 ELSE 1 END),';
3755 $params['fromcontextid'] = $fromcontext->id;
3756 $params['frompath'] = $fromcontext->path.'/%';
3758 $query .= ' c.sortorder, cm.id';
3759 $totalpages = $page + 1;
3761 // Use core_tag_index_builder to build and filter the list of items.
3762 // Request one item more than we need so we know if next page exists.
3763 $builder = new core_tag_index_builder('core', 'course_modules', $query, $params, $page * $perpage, $perpage + 1);
3764 while ($item = $builder->has_item_that_needs_access_check()) {
3765 context_helper::preload_from_record($item);
3766 $courseid = $item->courseid;
3767 if (!$builder->can_access_course($courseid)) {
3768 $builder->set_accessible($item, false);
3769 continue;
3771 $modinfo = get_fast_modinfo($builder->get_course($courseid));
3772 // Set accessibility of this item and all other items in the same course.
3773 $builder->walk(function ($taggeditem) use ($courseid, $modinfo, $builder) {
3774 if ($taggeditem->courseid == $courseid) {
3775 $cm = $modinfo->get_cm($taggeditem->cmid);
3776 $builder->set_accessible($taggeditem, $cm->uservisible);
3781 $items = $builder->get_items();
3782 if (count($items) > $perpage) {
3783 $totalpages = $page + 2; // We don't need exact page count, just indicate that the next page exists.
3784 array_pop($items);
3787 // Build the display contents.
3788 if ($items) {
3789 $tagfeed = new core_tag\output\tagfeed();
3790 foreach ($items as $item) {
3791 context_helper::preload_from_record($item);
3792 $course = $builder->get_course($item->courseid);
3793 $modinfo = get_fast_modinfo($course);
3794 $cm = $modinfo->get_cm($item->cmid);
3795 $courseurl = course_get_url($item->courseid, $cm->sectionnum);
3796 $cmname = $cm->get_formatted_name();
3797 if (!$exclusivemode) {
3798 $cmname = shorten_text($cmname, 100);
3800 $cmname = html_writer::link($cm->url?:$courseurl, $cmname);
3801 $coursename = format_string($course->fullname, true,
3802 array('context' => context_course::instance($item->courseid)));
3803 $coursename = html_writer::link($courseurl, $coursename);
3804 $icon = html_writer::empty_tag('img', array('src' => $cm->get_icon_url()));
3805 $tagfeed->add($icon, $cmname, $coursename);
3808 $content = $OUTPUT->render_from_template('core_tag/tagfeed',
3809 $tagfeed->export_for_template($OUTPUT));
3811 return new core_tag\output\tagindex($tag, 'core', 'course_modules', $content,
3812 $exclusivemode, $fromcontextid, $contextid, $recursivecontext, $page, $totalpages);
3817 * Return an object with the list of navigation options in a course that are avaialable or not for the current user.
3818 * This function also handles the frontpage course.
3820 * @param stdClass $context context object (it can be a course context or the system context for frontpage settings)
3821 * @param stdClass $course the course where the settings are being rendered
3822 * @return stdClass the navigation options in a course and their availability status
3823 * @since Moodle 3.2
3825 function course_get_user_navigation_options($context, $course = null) {
3826 global $CFG;
3828 $isloggedin = isloggedin();
3829 $isguestuser = isguestuser();
3830 $isfrontpage = $context->contextlevel == CONTEXT_SYSTEM;
3832 if ($isfrontpage) {
3833 $sitecontext = $context;
3834 } else {
3835 $sitecontext = context_system::instance();
3838 // Sets defaults for all options.
3839 $options = (object) [
3840 'badges' => false,
3841 'blogs' => false,
3842 'calendar' => false,
3843 'competencies' => false,
3844 'grades' => false,
3845 'notes' => false,
3846 'participants' => false,
3847 'search' => false,
3848 'tags' => false,
3851 $options->blogs = !empty($CFG->enableblogs) &&
3852 ($CFG->bloglevel == BLOG_GLOBAL_LEVEL ||
3853 ($CFG->bloglevel == BLOG_SITE_LEVEL and ($isloggedin and !$isguestuser)))
3854 && has_capability('moodle/blog:view', $sitecontext);
3856 $options->notes = !empty($CFG->enablenotes) && has_any_capability(array('moodle/notes:manage', 'moodle/notes:view'), $context);
3858 // Frontpage settings?
3859 if ($isfrontpage) {
3860 // We are on the front page, so make sure we use the proper capability (site:viewparticipants).
3861 $options->participants = course_can_view_participants($sitecontext);
3862 $options->badges = !empty($CFG->enablebadges) && has_capability('moodle/badges:viewbadges', $sitecontext);
3863 $options->tags = !empty($CFG->usetags) && $isloggedin;
3864 $options->search = !empty($CFG->enableglobalsearch) && has_capability('moodle/search:query', $sitecontext);
3865 $options->calendar = $isloggedin;
3866 } else {
3867 // We are in a course, so make sure we use the proper capability (course:viewparticipants).
3868 $options->participants = course_can_view_participants($context);
3869 $options->badges = !empty($CFG->enablebadges) && !empty($CFG->badges_allowcoursebadges) &&
3870 has_capability('moodle/badges:viewbadges', $context);
3871 // Add view grade report is permitted.
3872 $grades = false;
3874 if (has_capability('moodle/grade:viewall', $context)) {
3875 $grades = true;
3876 } else if (!empty($course->showgrades)) {
3877 $reports = core_component::get_plugin_list('gradereport');
3878 if (is_array($reports) && count($reports) > 0) { // Get all installed reports.
3879 arsort($reports); // User is last, we want to test it first.
3880 foreach ($reports as $plugin => $plugindir) {
3881 if (has_capability('gradereport/'.$plugin.':view', $context)) {
3882 // Stop when the first visible plugin is found.
3883 $grades = true;
3884 break;
3889 $options->grades = $grades;
3892 if (\core_competency\api::is_enabled()) {
3893 $capabilities = array('moodle/competency:coursecompetencyview', 'moodle/competency:coursecompetencymanage');
3894 $options->competencies = has_any_capability($capabilities, $context);
3896 return $options;
3900 * Return an object with the list of administration options in a course that are available or not for the current user.
3901 * This function also handles the frontpage settings.
3903 * @param stdClass $course course object (for frontpage it should be a clone of $SITE)
3904 * @param stdClass $context context object (course context)
3905 * @return stdClass the administration options in a course and their availability status
3906 * @since Moodle 3.2
3908 function course_get_user_administration_options($course, $context) {
3909 global $CFG;
3910 $isfrontpage = $course->id == SITEID;
3911 $completionenabled = $CFG->enablecompletion && $course->enablecompletion;
3912 $hascompletiontabs = count(core_completion\manager::get_available_completion_tabs($course, $context)) > 0;
3914 $options = new stdClass;
3915 $options->update = has_capability('moodle/course:update', $context);
3916 $options->editcompletion = $CFG->enablecompletion &&
3917 $course->enablecompletion &&
3918 ($options->update || $hascompletiontabs);
3919 $options->filters = has_capability('moodle/filter:manage', $context) &&
3920 count(filter_get_available_in_context($context)) > 0;
3921 $options->reports = has_capability('moodle/site:viewreports', $context);
3922 $options->backup = has_capability('moodle/backup:backupcourse', $context);
3923 $options->restore = has_capability('moodle/restore:restorecourse', $context);
3924 $options->files = ($course->legacyfiles == 2 && has_capability('moodle/course:managefiles', $context));
3926 if (!$isfrontpage) {
3927 $options->tags = has_capability('moodle/course:tag', $context);
3928 $options->gradebook = has_capability('moodle/grade:manage', $context);
3929 $options->outcomes = !empty($CFG->enableoutcomes) && has_capability('moodle/course:update', $context);
3930 $options->badges = !empty($CFG->enablebadges);
3931 $options->import = has_capability('moodle/restore:restoretargetimport', $context);
3932 $options->publish = has_capability('moodle/course:publish', $context);
3933 $options->reset = has_capability('moodle/course:reset', $context);
3934 $options->roles = has_capability('moodle/role:switchroles', $context);
3935 } else {
3936 // Set default options to false.
3937 $listofoptions = array('tags', 'gradebook', 'outcomes', 'badges', 'import', 'publish', 'reset', 'roles', 'grades');
3939 foreach ($listofoptions as $option) {
3940 $options->$option = false;
3944 return $options;
3948 * Validates course start and end dates.
3950 * Checks that the end course date is not greater than the start course date.
3952 * $coursedata['startdate'] or $coursedata['enddate'] may not be set, it depends on the form and user input.
3954 * @param array $coursedata May contain startdate and enddate timestamps, depends on the user input.
3955 * @return mixed False if everything alright, error codes otherwise.
3957 function course_validate_dates($coursedata) {
3959 // If both start and end dates are set end date should be later than the start date.
3960 if (!empty($coursedata['startdate']) && !empty($coursedata['enddate']) &&
3961 ($coursedata['enddate'] < $coursedata['startdate'])) {
3962 return 'enddatebeforestartdate';
3965 // If start date is not set end date can not be set.
3966 if (empty($coursedata['startdate']) && !empty($coursedata['enddate'])) {
3967 return 'nostartdatenoenddate';
3970 return false;
3974 * Check for course updates in the given context level instances (only modules supported right Now)
3976 * @param stdClass $course course object
3977 * @param array $tocheck instances to check for updates
3978 * @param array $filter check only for updates in these areas
3979 * @return array list of warnings and instances with updates information
3980 * @since Moodle 3.2
3982 function course_check_updates($course, $tocheck, $filter = array()) {
3983 global $CFG, $DB;
3985 $instances = array();
3986 $warnings = array();
3987 $modulescallbacksupport = array();
3988 $modinfo = get_fast_modinfo($course);
3990 $supportedplugins = get_plugin_list_with_function('mod', 'check_updates_since');
3992 // Check instances.
3993 foreach ($tocheck as $instance) {
3994 if ($instance['contextlevel'] == 'module') {
3995 // Check module visibility.
3996 try {
3997 $cm = $modinfo->get_cm($instance['id']);
3998 } catch (Exception $e) {
3999 $warnings[] = array(
4000 'item' => 'module',
4001 'itemid' => $instance['id'],
4002 'warningcode' => 'cmidnotincourse',
4003 'message' => 'This module id does not belong to this course.'
4005 continue;
4008 if (!$cm->uservisible) {
4009 $warnings[] = array(
4010 'item' => 'module',
4011 'itemid' => $instance['id'],
4012 'warningcode' => 'nonuservisible',
4013 'message' => 'You don\'t have access to this module.'
4015 continue;
4017 if (empty($supportedplugins['mod_' . $cm->modname])) {
4018 $warnings[] = array(
4019 'item' => 'module',
4020 'itemid' => $instance['id'],
4021 'warningcode' => 'missingcallback',
4022 'message' => 'This module does not implement the check_updates_since callback: ' . $instance['contextlevel'],
4024 continue;
4026 // Retrieve the module instance.
4027 $instances[] = array(
4028 'contextlevel' => $instance['contextlevel'],
4029 'id' => $instance['id'],
4030 'updates' => call_user_func($cm->modname . '_check_updates_since', $cm, $instance['since'], $filter)
4033 } else {
4034 $warnings[] = array(
4035 'item' => 'contextlevel',
4036 'itemid' => $instance['id'],
4037 'warningcode' => 'contextlevelnotsupported',
4038 'message' => 'Context level not yet supported ' . $instance['contextlevel'],
4042 return array($instances, $warnings);
4046 * This function classifies a course as past, in progress or future.
4048 * This function may incur a DB hit to calculate course completion.
4049 * @param stdClass $course Course record
4050 * @param stdClass $user User record (optional - defaults to $USER).
4051 * @param completion_info $completioninfo Completion record for the user (optional - will be fetched if required).
4052 * @return string (one of COURSE_TIMELINE_FUTURE, COURSE_TIMELINE_INPROGRESS or COURSE_TIMELINE_PAST)
4054 function course_classify_for_timeline($course, $user = null, $completioninfo = null) {
4055 global $USER;
4057 if ($user == null) {
4058 $user = $USER;
4061 $today = time();
4062 // End date past.
4063 if (!empty($course->enddate) && $course->enddate < $today) {
4064 return COURSE_TIMELINE_PAST;
4067 if ($completioninfo == null) {
4068 $completioninfo = new completion_info($course);
4071 // Course was completed.
4072 if ($completioninfo->is_enabled() && $completioninfo->is_course_complete($user->id)) {
4073 return COURSE_TIMELINE_PAST;
4076 // Start date not reached.
4077 if (!empty($course->startdate) && $course->startdate > $today) {
4078 return COURSE_TIMELINE_FUTURE;
4081 // Everything else is in progress.
4082 return COURSE_TIMELINE_INPROGRESS;
4086 * Check module updates since a given time.
4087 * This function checks for updates in the module config, file areas, completion, grades, comments and ratings.
4089 * @param cm_info $cm course module data
4090 * @param int $from the time to check
4091 * @param array $fileareas additional file ares to check
4092 * @param array $filter if we need to filter and return only selected updates
4093 * @return stdClass object with the different updates
4094 * @since Moodle 3.2
4096 function course_check_module_updates_since($cm, $from, $fileareas = array(), $filter = array()) {
4097 global $DB, $CFG, $USER;
4099 $context = $cm->context;
4100 $mod = $DB->get_record($cm->modname, array('id' => $cm->instance), '*', MUST_EXIST);
4102 $updates = new stdClass();
4103 $course = get_course($cm->course);
4104 $component = 'mod_' . $cm->modname;
4106 // Check changes in the module configuration.
4107 if (isset($mod->timemodified) and (empty($filter) or in_array('configuration', $filter))) {
4108 $updates->configuration = (object) array('updated' => false);
4109 if ($updates->configuration->updated = $mod->timemodified > $from) {
4110 $updates->configuration->timeupdated = $mod->timemodified;
4114 // Check for updates in files.
4115 if (plugin_supports('mod', $cm->modname, FEATURE_MOD_INTRO)) {
4116 $fileareas[] = 'intro';
4118 if (!empty($fileareas) and (empty($filter) or in_array('fileareas', $filter))) {
4119 $fs = get_file_storage();
4120 $files = $fs->get_area_files($context->id, $component, $fileareas, false, "filearea, timemodified DESC", false, $from);
4121 foreach ($fileareas as $filearea) {
4122 $updates->{$filearea . 'files'} = (object) array('updated' => false);
4124 foreach ($files as $file) {
4125 $updates->{$file->get_filearea() . 'files'}->updated = true;
4126 $updates->{$file->get_filearea() . 'files'}->itemids[] = $file->get_id();
4130 // Check completion.
4131 $supportcompletion = plugin_supports('mod', $cm->modname, FEATURE_COMPLETION_HAS_RULES);
4132 $supportcompletion = $supportcompletion or plugin_supports('mod', $cm->modname, FEATURE_COMPLETION_TRACKS_VIEWS);
4133 if ($supportcompletion and (empty($filter) or in_array('completion', $filter))) {
4134 $updates->completion = (object) array('updated' => false);
4135 $completion = new completion_info($course);
4136 // Use wholecourse to cache all the modules the first time.
4137 $completiondata = $completion->get_data($cm, true);
4138 if ($updates->completion->updated = !empty($completiondata->timemodified) && $completiondata->timemodified > $from) {
4139 $updates->completion->timemodified = $completiondata->timemodified;
4143 // Check grades.
4144 $supportgrades = plugin_supports('mod', $cm->modname, FEATURE_GRADE_HAS_GRADE);
4145 $supportgrades = $supportgrades or plugin_supports('mod', $cm->modname, FEATURE_GRADE_OUTCOMES);
4146 if ($supportgrades and (empty($filter) or (in_array('gradeitems', $filter) or in_array('outcomes', $filter)))) {
4147 require_once($CFG->libdir . '/gradelib.php');
4148 $grades = grade_get_grades($course->id, 'mod', $cm->modname, $mod->id, $USER->id);
4150 if (empty($filter) or in_array('gradeitems', $filter)) {
4151 $updates->gradeitems = (object) array('updated' => false);
4152 foreach ($grades->items as $gradeitem) {
4153 foreach ($gradeitem->grades as $grade) {
4154 if ($grade->datesubmitted > $from or $grade->dategraded > $from) {
4155 $updates->gradeitems->updated = true;
4156 $updates->gradeitems->itemids[] = $gradeitem->id;
4162 if (empty($filter) or in_array('outcomes', $filter)) {
4163 $updates->outcomes = (object) array('updated' => false);
4164 foreach ($grades->outcomes as $outcome) {
4165 foreach ($outcome->grades as $grade) {
4166 if ($grade->datesubmitted > $from or $grade->dategraded > $from) {
4167 $updates->outcomes->updated = true;
4168 $updates->outcomes->itemids[] = $outcome->id;
4175 // Check comments.
4176 if (plugin_supports('mod', $cm->modname, FEATURE_COMMENT) and (empty($filter) or in_array('comments', $filter))) {
4177 $updates->comments = (object) array('updated' => false);
4178 require_once($CFG->dirroot . '/comment/lib.php');
4179 require_once($CFG->dirroot . '/comment/locallib.php');
4180 $manager = new comment_manager();
4181 $comments = $manager->get_component_comments_since($course, $context, $component, $from, $cm);
4182 if (!empty($comments)) {
4183 $updates->comments->updated = true;
4184 $updates->comments->itemids = array_keys($comments);
4188 // Check ratings.
4189 if (plugin_supports('mod', $cm->modname, FEATURE_RATE) and (empty($filter) or in_array('ratings', $filter))) {
4190 $updates->ratings = (object) array('updated' => false);
4191 require_once($CFG->dirroot . '/rating/lib.php');
4192 $manager = new rating_manager();
4193 $ratings = $manager->get_component_ratings_since($context, $component, $from);
4194 if (!empty($ratings)) {
4195 $updates->ratings->updated = true;
4196 $updates->ratings->itemids = array_keys($ratings);
4200 return $updates;
4204 * Returns true if the user can view the participant page, false otherwise,
4206 * @param context $context The context we are checking.
4207 * @return bool
4209 function course_can_view_participants($context) {
4210 $viewparticipantscap = 'moodle/course:viewparticipants';
4211 if ($context->contextlevel == CONTEXT_SYSTEM) {
4212 $viewparticipantscap = 'moodle/site:viewparticipants';
4215 return has_any_capability([$viewparticipantscap, 'moodle/course:enrolreview'], $context);
4219 * Checks if a user can view the participant page, if not throws an exception.
4221 * @param context $context The context we are checking.
4222 * @throws required_capability_exception
4224 function course_require_view_participants($context) {
4225 if (!course_can_view_participants($context)) {
4226 $viewparticipantscap = 'moodle/course:viewparticipants';
4227 if ($context->contextlevel == CONTEXT_SYSTEM) {
4228 $viewparticipantscap = 'moodle/site:viewparticipants';
4230 throw new required_capability_exception($context, $viewparticipantscap, 'nopermissions', '');
4235 * Return whether the user can download from the specified backup file area in the given context.
4237 * @param string $filearea the backup file area. E.g. 'course', 'backup' or 'automated'.
4238 * @param \context $context
4239 * @param stdClass $user the user object. If not provided, the current user will be checked.
4240 * @return bool true if the user is allowed to download in the context, false otherwise.
4242 function can_download_from_backup_filearea($filearea, \context $context, stdClass $user = null) {
4243 $candownload = false;
4244 switch ($filearea) {
4245 case 'course':
4246 case 'backup':
4247 $candownload = has_capability('moodle/backup:downloadfile', $context, $user);
4248 break;
4249 case 'automated':
4250 // Given the automated backups may contain userinfo, we restrict access such that only users who are able to
4251 // restore with userinfo are able to download the file. Users can't create these backups, so checking 'backup:userinfo'
4252 // doesn't make sense here.
4253 $candownload = has_capability('moodle/backup:downloadfile', $context, $user) &&
4254 has_capability('moodle/restore:userinfo', $context, $user);
4255 break;
4256 default:
4257 break;
4260 return $candownload;