Merge branch 'MDL-73354-master' of git://github.com/abgreeve/moodle
[moodle.git] / lib / modinfolib.php
blobb962a13338570692106456ca046c2d7151712287
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 * modinfolib.php - Functions/classes relating to cached information about module instances on
19 * a course.
20 * @package core
21 * @subpackage lib
22 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
23 * @author sam marshall
27 // Maximum number of modinfo items to keep in memory cache. Do not increase this to a large
28 // number because:
29 // a) modinfo can be big (megabyte range) for some courses
30 // b) performance of cache will deteriorate if there are very many items in it
31 if (!defined('MAX_MODINFO_CACHE_SIZE')) {
32 define('MAX_MODINFO_CACHE_SIZE', 10);
36 /**
37 * Information about a course that is cached in the course table 'modinfo' field (and then in
38 * memory) in order to reduce the need for other database queries.
40 * This includes information about the course-modules and the sections on the course. It can also
41 * include dynamic data that has been updated for the current user.
43 * Use {@link get_fast_modinfo()} to retrieve the instance of the object for particular course
44 * and particular user.
46 * @property-read int $courseid Course ID
47 * @property-read int $userid User ID
48 * @property-read array $sections Array from section number (e.g. 0) to array of course-module IDs in that
49 * section; this only includes sections that contain at least one course-module
50 * @property-read cm_info[] $cms Array from course-module instance to cm_info object within this course, in
51 * order of appearance
52 * @property-read cm_info[][] $instances Array from string (modname) => int (instance id) => cm_info object
53 * @property-read array $groups Groups that the current user belongs to. Calculated on the first request.
54 * Is an array of grouping id => array of group id => group id. Includes grouping id 0 for 'all groups'
56 class course_modinfo {
57 /** @var int Maximum time the course cache building lock can be held */
58 const COURSE_CACHE_LOCK_EXPIRY = 180;
60 /** @var int Time to wait for the course cache building lock before throwing an exception */
61 const COURSE_CACHE_LOCK_WAIT = 60;
63 /**
64 * List of fields from DB table 'course' that are cached in MUC and are always present in course_modinfo::$course
65 * @var array
67 public static $cachedfields = array('shortname', 'fullname', 'format',
68 'enablecompletion', 'groupmode', 'groupmodeforce', 'cacherev');
70 /**
71 * For convenience we store the course object here as it is needed in other parts of code
72 * @var stdClass
74 private $course;
76 /**
77 * Array of section data from cache
78 * @var section_info[]
80 private $sectioninfo;
82 /**
83 * User ID
84 * @var int
86 private $userid;
88 /**
89 * Array from int (section num, e.g. 0) => array of int (course-module id); this list only
90 * includes sections that actually contain at least one course-module
91 * @var array
93 private $sections;
95 /**
96 * Array from section id => section num.
97 * @var array
99 private $sectionids;
102 * Array from int (cm id) => cm_info object
103 * @var cm_info[]
105 private $cms;
108 * Array from string (modname) => int (instance id) => cm_info object
109 * @var cm_info[][]
111 private $instances;
114 * Groups that the current user belongs to. This value is calculated on first
115 * request to the property or function.
116 * When set, it is an array of grouping id => array of group id => group id.
117 * Includes grouping id 0 for 'all groups'.
118 * @var int[][]
120 private $groups;
123 * List of class read-only properties and their getter methods.
124 * Used by magic functions __get(), __isset(), __empty()
125 * @var array
127 private static $standardproperties = array(
128 'courseid' => 'get_course_id',
129 'userid' => 'get_user_id',
130 'sections' => 'get_sections',
131 'cms' => 'get_cms',
132 'instances' => 'get_instances',
133 'groups' => 'get_groups_all',
137 * Magic method getter
139 * @param string $name
140 * @return mixed
142 public function __get($name) {
143 if (isset(self::$standardproperties[$name])) {
144 $method = self::$standardproperties[$name];
145 return $this->$method();
146 } else {
147 debugging('Invalid course_modinfo property accessed: '.$name);
148 return null;
153 * Magic method for function isset()
155 * @param string $name
156 * @return bool
158 public function __isset($name) {
159 if (isset(self::$standardproperties[$name])) {
160 $value = $this->__get($name);
161 return isset($value);
163 return false;
167 * Magic method for function empty()
169 * @param string $name
170 * @return bool
172 public function __empty($name) {
173 if (isset(self::$standardproperties[$name])) {
174 $value = $this->__get($name);
175 return empty($value);
177 return true;
181 * Magic method setter
183 * Will display the developer warning when trying to set/overwrite existing property.
185 * @param string $name
186 * @param mixed $value
188 public function __set($name, $value) {
189 debugging("It is not allowed to set the property course_modinfo::\${$name}", DEBUG_DEVELOPER);
193 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
195 * It may not contain all fields from DB table {course} but always has at least the following:
196 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
198 * @return stdClass
200 public function get_course() {
201 return $this->course;
205 * @return int Course ID
207 public function get_course_id() {
208 return $this->course->id;
212 * @return int User ID
214 public function get_user_id() {
215 return $this->userid;
219 * @return array Array from section number (e.g. 0) to array of course-module IDs in that
220 * section; this only includes sections that contain at least one course-module
222 public function get_sections() {
223 return $this->sections;
227 * @return cm_info[] Array from course-module instance to cm_info object within this course, in
228 * order of appearance
230 public function get_cms() {
231 return $this->cms;
235 * Obtains a single course-module object (for a course-module that is on this course).
236 * @param int $cmid Course-module ID
237 * @return cm_info Information about that course-module
238 * @throws moodle_exception If the course-module does not exist
240 public function get_cm($cmid) {
241 if (empty($this->cms[$cmid])) {
242 throw new moodle_exception('invalidcoursemodule', 'error');
244 return $this->cms[$cmid];
248 * Obtains all module instances on this course.
249 * @return cm_info[][] Array from module name => array from instance id => cm_info
251 public function get_instances() {
252 return $this->instances;
256 * Returns array of localised human-readable module names used in this course
258 * @param bool $plural if true returns the plural form of modules names
259 * @return array
261 public function get_used_module_names($plural = false) {
262 $modnames = get_module_types_names($plural);
263 $modnamesused = array();
264 foreach ($this->get_cms() as $cmid => $mod) {
265 if (!isset($modnamesused[$mod->modname]) && isset($modnames[$mod->modname]) && $mod->uservisible) {
266 $modnamesused[$mod->modname] = $modnames[$mod->modname];
269 return $modnamesused;
273 * Obtains all instances of a particular module on this course.
274 * @param $modname Name of module (not full frankenstyle) e.g. 'label'
275 * @return cm_info[] Array from instance id => cm_info for modules on this course; empty if none
277 public function get_instances_of($modname) {
278 if (empty($this->instances[$modname])) {
279 return array();
281 return $this->instances[$modname];
285 * Groups that the current user belongs to organised by grouping id. Calculated on the first request.
286 * @return int[][] array of grouping id => array of group id => group id. Includes grouping id 0 for 'all groups'
288 private function get_groups_all() {
289 if (is_null($this->groups)) {
290 // NOTE: Performance could be improved here. The system caches user groups
291 // in $USER->groupmember[$courseid] => array of groupid=>groupid. Unfortunately this
292 // structure does not include grouping information. It probably could be changed to
293 // do so, without a significant performance hit on login, thus saving this one query
294 // each request.
295 $this->groups = groups_get_user_groups($this->course->id, $this->userid);
297 return $this->groups;
301 * Returns groups that the current user belongs to on the course. Note: If not already
302 * available, this may make a database query.
303 * @param int $groupingid Grouping ID or 0 (default) for all groups
304 * @return int[] Array of int (group id) => int (same group id again); empty array if none
306 public function get_groups($groupingid = 0) {
307 $allgroups = $this->get_groups_all();
308 if (!isset($allgroups[$groupingid])) {
309 return array();
311 return $allgroups[$groupingid];
315 * Gets all sections as array from section number => data about section.
316 * @return section_info[] Array of section_info objects organised by section number
318 public function get_section_info_all() {
319 return $this->sectioninfo;
323 * Gets data about specific numbered section.
324 * @param int $sectionnumber Number (not id) of section
325 * @param int $strictness Use MUST_EXIST to throw exception if it doesn't
326 * @return section_info Information for numbered section or null if not found
328 public function get_section_info($sectionnumber, $strictness = IGNORE_MISSING) {
329 if (!array_key_exists($sectionnumber, $this->sectioninfo)) {
330 if ($strictness === MUST_EXIST) {
331 throw new moodle_exception('sectionnotexist');
332 } else {
333 return null;
336 return $this->sectioninfo[$sectionnumber];
340 * Gets data about specific section ID.
341 * @param int $sectionid ID (not number) of section
342 * @param int $strictness Use MUST_EXIST to throw exception if it doesn't
343 * @return section_info|null Information for numbered section or null if not found
345 public function get_section_info_by_id(int $sectionid, int $strictness = IGNORE_MISSING): ?section_info {
347 if (!isset($this->sectionids[$sectionid])) {
348 if ($strictness === MUST_EXIST) {
349 throw new moodle_exception('sectionnotexist');
350 } else {
351 return null;
354 return $this->get_section_info($this->sectionids[$sectionid], $strictness);
358 * Static cache for generated course_modinfo instances
360 * @see course_modinfo::instance()
361 * @see course_modinfo::clear_instance_cache()
362 * @var course_modinfo[]
364 protected static $instancecache = array();
367 * Timestamps (microtime) when the course_modinfo instances were last accessed
369 * It is used to remove the least recent accessed instances when static cache is full
371 * @var float[]
373 protected static $cacheaccessed = array();
376 * Clears the cache used in course_modinfo::instance()
378 * Used in {@link get_fast_modinfo()} when called with argument $reset = true
379 * and in {@link rebuild_course_cache()}
381 * @param null|int|stdClass $courseorid if specified removes only cached value for this course
383 public static function clear_instance_cache($courseorid = null) {
384 if (empty($courseorid)) {
385 self::$instancecache = array();
386 self::$cacheaccessed = array();
387 return;
389 if (is_object($courseorid)) {
390 $courseorid = $courseorid->id;
392 if (isset(self::$instancecache[$courseorid])) {
393 // Unsetting static variable in PHP is peculiar, it removes the reference,
394 // but data remain in memory. Prior to unsetting, the varable needs to be
395 // set to empty to remove its remains from memory.
396 self::$instancecache[$courseorid] = '';
397 unset(self::$instancecache[$courseorid]);
398 unset(self::$cacheaccessed[$courseorid]);
403 * Returns the instance of course_modinfo for the specified course and specified user
405 * This function uses static cache for the retrieved instances. The cache
406 * size is limited by MAX_MODINFO_CACHE_SIZE. If instance is not found in
407 * the static cache or it was created for another user or the cacherev validation
408 * failed - a new instance is constructed and returned.
410 * Used in {@link get_fast_modinfo()}
412 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
413 * and recommended to have field 'cacherev') or just a course id
414 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
415 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
416 * @return course_modinfo
418 public static function instance($courseorid, $userid = 0) {
419 global $USER;
420 if (is_object($courseorid)) {
421 $course = $courseorid;
422 } else {
423 $course = (object)array('id' => $courseorid);
425 if (empty($userid)) {
426 $userid = $USER->id;
429 if (!empty(self::$instancecache[$course->id])) {
430 if (self::$instancecache[$course->id]->userid == $userid &&
431 (!isset($course->cacherev) ||
432 $course->cacherev == self::$instancecache[$course->id]->get_course()->cacherev)) {
433 // This course's modinfo for the same user was recently retrieved, return cached.
434 self::$cacheaccessed[$course->id] = microtime(true);
435 return self::$instancecache[$course->id];
436 } else {
437 // Prevent potential reference problems when switching users.
438 self::clear_instance_cache($course->id);
441 $modinfo = new course_modinfo($course, $userid);
443 // We have a limit of MAX_MODINFO_CACHE_SIZE entries to store in static variable.
444 if (count(self::$instancecache) >= MAX_MODINFO_CACHE_SIZE) {
445 // Find the course that was the least recently accessed.
446 asort(self::$cacheaccessed, SORT_NUMERIC);
447 $courseidtoremove = key(array_reverse(self::$cacheaccessed, true));
448 self::clear_instance_cache($courseidtoremove);
451 // Add modinfo to the static cache.
452 self::$instancecache[$course->id] = $modinfo;
453 self::$cacheaccessed[$course->id] = microtime(true);
455 return $modinfo;
459 * Constructs based on course.
460 * Note: This constructor should not usually be called directly.
461 * Use get_fast_modinfo($course) instead as this maintains a cache.
462 * @param stdClass $course course object, only property id is required.
463 * @param int $userid User ID
464 * @throws moodle_exception if course is not found
466 public function __construct($course, $userid) {
467 global $CFG, $COURSE, $SITE, $DB;
469 if (!isset($course->cacherev)) {
470 // We require presence of property cacherev to validate the course cache.
471 // No need to clone the $COURSE or $SITE object here because we clone it below anyway.
472 $course = get_course($course->id, false);
475 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
477 // Retrieve modinfo from cache. If not present or cacherev mismatches, call rebuild and retrieve again.
478 $coursemodinfo = $cachecoursemodinfo->get($course->id);
479 if ($coursemodinfo === false || ($course->cacherev != $coursemodinfo->cacherev)) {
480 $lock = self::get_course_cache_lock($course->id);
481 try {
482 // Only actually do the build if it's still needed after getting the lock (not if
483 // somebody else, who might have been holding the lock, built it already).
484 $coursemodinfo = $cachecoursemodinfo->get($course->id);
485 if ($coursemodinfo === false || ($course->cacherev != $coursemodinfo->cacherev)) {
486 $coursemodinfo = self::inner_build_course_cache($course, $lock);
488 } finally {
489 $lock->release();
493 // Set initial values
494 $this->userid = $userid;
495 $this->sections = array();
496 $this->sectionids = [];
497 $this->cms = array();
498 $this->instances = array();
499 $this->groups = null;
501 // If we haven't already preloaded contexts for the course, do it now
502 // Modules are also cached here as long as it's the first time this course has been preloaded.
503 context_helper::preload_course($course->id);
505 // Quick integrity check: as a result of race conditions modinfo may not be regenerated after the change.
506 // It is especially dangerous if modinfo contains the deleted course module, as it results in fatal error.
507 // We can check it very cheap by validating the existence of module context.
508 if ($course->id == $COURSE->id || $course->id == $SITE->id) {
509 // Only verify current course (or frontpage) as pages with many courses may not have module contexts cached.
510 // (Uncached modules will result in a very slow verification).
511 foreach ($coursemodinfo->modinfo as $mod) {
512 if (!context_module::instance($mod->cm, IGNORE_MISSING)) {
513 debugging('Course cache integrity check failed: course module with id '. $mod->cm.
514 ' does not have context. Rebuilding cache for course '. $course->id);
515 // Re-request the course record from DB as well, don't use get_course() here.
516 $course = $DB->get_record('course', array('id' => $course->id), '*', MUST_EXIST);
517 $coursemodinfo = self::build_course_cache($course);
518 break;
523 // Overwrite unset fields in $course object with cached values, store the course object.
524 $this->course = fullclone($course);
525 foreach ($coursemodinfo as $key => $value) {
526 if ($key !== 'modinfo' && $key !== 'sectioncache' &&
527 (!isset($this->course->$key) || $key === 'cacherev')) {
528 $this->course->$key = $value;
532 // Loop through each piece of module data, constructing it
533 static $modexists = array();
534 foreach ($coursemodinfo->modinfo as $mod) {
535 if (!isset($mod->name) || strval($mod->name) === '') {
536 // something is wrong here
537 continue;
540 // Skip modules which don't exist
541 if (!array_key_exists($mod->mod, $modexists)) {
542 $modexists[$mod->mod] = file_exists("$CFG->dirroot/mod/$mod->mod/lib.php");
544 if (!$modexists[$mod->mod]) {
545 continue;
548 // Construct info for this module
549 $cm = new cm_info($this, null, $mod, null);
551 // Store module in instances and cms array
552 if (!isset($this->instances[$cm->modname])) {
553 $this->instances[$cm->modname] = array();
555 $this->instances[$cm->modname][$cm->instance] = $cm;
556 $this->cms[$cm->id] = $cm;
558 // Reconstruct sections. This works because modules are stored in order
559 if (!isset($this->sections[$cm->sectionnum])) {
560 $this->sections[$cm->sectionnum] = array();
562 $this->sections[$cm->sectionnum][] = $cm->id;
565 // Expand section objects
566 $this->sectioninfo = array();
567 foreach ($coursemodinfo->sectioncache as $number => $data) {
568 $this->sectionids[$data->id] = $number;
569 $this->sectioninfo[$number] = new section_info($data, $number, null, null,
570 $this, null);
575 * This method can not be used anymore.
577 * @see course_modinfo::build_course_cache()
578 * @deprecated since 2.6
580 public static function build_section_cache($courseid) {
581 throw new coding_exception('Function course_modinfo::build_section_cache() can not be used anymore.' .
582 ' Please use course_modinfo::build_course_cache() whenever applicable.');
586 * Builds a list of information about sections on a course to be stored in
587 * the course cache. (Does not include information that is already cached
588 * in some other way.)
590 * @param stdClass $course Course object (must contain fields
591 * @return array Information about sections, indexed by section number (not id)
593 protected static function build_course_section_cache($course) {
594 global $DB;
596 // Get section data
597 $sections = $DB->get_records('course_sections', array('course' => $course->id), 'section',
598 'section, id, course, name, summary, summaryformat, sequence, visible, availability');
599 $compressedsections = array();
601 $formatoptionsdef = course_get_format($course)->section_format_options();
602 // Remove unnecessary data and add availability
603 foreach ($sections as $number => $section) {
604 // Add cached options from course format to $section object
605 foreach ($formatoptionsdef as $key => $option) {
606 if (!empty($option['cache'])) {
607 $formatoptions = course_get_format($course)->get_format_options($section);
608 if (!array_key_exists('cachedefault', $option) || $option['cachedefault'] !== $formatoptions[$key]) {
609 $section->$key = $formatoptions[$key];
613 // Clone just in case it is reused elsewhere
614 $compressedsections[$number] = clone($section);
615 section_info::convert_for_section_cache($compressedsections[$number]);
618 return $compressedsections;
622 * Gets a lock for rebuilding the cache of a single course.
624 * Caller must release the returned lock.
626 * This is used to ensure that the cache rebuild doesn't happen multiple times in parallel.
627 * This function will wait up to 1 minute for the lock to be obtained. If the lock cannot
628 * be obtained, it throws an exception.
630 * @param int $courseid Course id
631 * @return \core\lock\lock Lock (must be released!)
632 * @throws moodle_exception If the lock cannot be obtained
634 protected static function get_course_cache_lock($courseid) {
635 // Get database lock to ensure this doesn't happen multiple times in parallel. Wait a
636 // reasonable time for the lock to be released, so we can give a suitable error message.
637 // In case the system crashes while building the course cache, the lock will automatically
638 // expire after a (slightly longer) period.
639 $lockfactory = \core\lock\lock_config::get_lock_factory('core_modinfo');
640 $lock = $lockfactory->get_lock('build_course_cache_' . $courseid,
641 self::COURSE_CACHE_LOCK_WAIT, self::COURSE_CACHE_LOCK_EXPIRY);
642 if (!$lock) {
643 throw new moodle_exception('locktimeout', '', '', null,
644 'core_modinfo/build_course_cache_' . $courseid);
646 return $lock;
650 * Builds and stores in MUC object containing information about course
651 * modules and sections together with cached fields from table course.
653 * @param stdClass $course object from DB table course. Must have property 'id'
654 * but preferably should have all cached fields.
655 * @return stdClass object with all cached keys of the course plus fields modinfo and sectioncache.
656 * The same object is stored in MUC
657 * @throws moodle_exception if course is not found (if $course object misses some of the
658 * necessary fields it is re-requested from database)
660 public static function build_course_cache($course) {
661 if (empty($course->id)) {
662 throw new coding_exception('Object $course is missing required property \id\'');
665 $lock = self::get_course_cache_lock($course->id);
666 try {
667 return self::inner_build_course_cache($course, $lock);
668 } finally {
669 $lock->release();
674 * Called to build course cache when there is already a lock obtained.
676 * @param stdClass $course object from DB table course
677 * @param \core\lock\lock $lock Lock object - not actually used, just there to indicate you have a lock
678 * @return stdClass Course object that has been stored in MUC
680 protected static function inner_build_course_cache($course, \core\lock\lock $lock) {
681 global $DB, $CFG;
682 require_once("{$CFG->dirroot}/course/lib.php");
684 // Ensure object has all necessary fields.
685 foreach (self::$cachedfields as $key) {
686 if (!isset($course->$key)) {
687 $course = $DB->get_record('course', array('id' => $course->id),
688 implode(',', array_merge(array('id'), self::$cachedfields)), MUST_EXIST);
689 break;
692 // Retrieve all information about activities and sections.
693 // This may take time on large courses and it is possible that another user modifies the same course during this process.
694 // Field cacherev stored in both DB and cache will ensure that cached data matches the current course state.
695 $coursemodinfo = new stdClass();
696 $coursemodinfo->modinfo = get_array_of_activities($course->id);
697 $coursemodinfo->sectioncache = self::build_course_section_cache($course);
698 foreach (self::$cachedfields as $key) {
699 $coursemodinfo->$key = $course->$key;
701 // Set the accumulated activities and sections information in cache, together with cacherev.
702 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
703 $cachecoursemodinfo->set($course->id, $coursemodinfo);
704 return $coursemodinfo;
710 * Data about a single module on a course. This contains most of the fields in the course_modules
711 * table, plus additional data when required.
713 * The object can be accessed by core or any plugin (i.e. course format, block, filter, etc.) as
714 * get_fast_modinfo($courseorid)->cms[$coursemoduleid]
715 * or
716 * get_fast_modinfo($courseorid)->instances[$moduletype][$instanceid]
718 * There are three stages when activity module can add/modify data in this object:
720 * <b>Stage 1 - during building the cache.</b>
721 * Allows to add to the course cache static user-independent information about the module.
722 * Modules should try to include only absolutely necessary information that may be required
723 * when displaying course view page. The information is stored in application-level cache
724 * and reset when {@link rebuild_course_cache()} is called or cache is purged by admin.
726 * Modules can implement callback XXX_get_coursemodule_info() returning instance of object
727 * {@link cached_cm_info}
729 * <b>Stage 2 - dynamic data.</b>
730 * Dynamic data is user-dependent, it is stored in request-level cache. To reset this cache
731 * {@link get_fast_modinfo()} with $reset argument may be called.
733 * Dynamic data is obtained when any of the following properties/methods is requested:
734 * - {@link cm_info::$url}
735 * - {@link cm_info::$name}
736 * - {@link cm_info::$onclick}
737 * - {@link cm_info::get_icon_url()}
738 * - {@link cm_info::$uservisible}
739 * - {@link cm_info::$available}
740 * - {@link cm_info::$availableinfo}
741 * - plus any of the properties listed in Stage 3.
743 * Modules can implement callback <b>XXX_cm_info_dynamic()</b> and inside this callback they
744 * are allowed to use any of the following set methods:
745 * - {@link cm_info::set_available()}
746 * - {@link cm_info::set_name()}
747 * - {@link cm_info::set_no_view_link()}
748 * - {@link cm_info::set_user_visible()}
749 * - {@link cm_info::set_on_click()}
750 * - {@link cm_info::set_icon_url()}
751 * - {@link cm_info::override_customdata()}
752 * Any methods affecting view elements can also be set in this callback.
754 * <b>Stage 3 (view data).</b>
755 * Also user-dependend data stored in request-level cache. Second stage is created
756 * because populating the view data can be expensive as it may access much more
757 * Moodle APIs such as filters, user information, output renderers and we
758 * don't want to request it until necessary.
759 * View data is obtained when any of the following properties/methods is requested:
760 * - {@link cm_info::$afterediticons}
761 * - {@link cm_info::$content}
762 * - {@link cm_info::get_formatted_content()}
763 * - {@link cm_info::$extraclasses}
764 * - {@link cm_info::$afterlink}
766 * Modules can implement callback <b>XXX_cm_info_view()</b> and inside this callback they
767 * are allowed to use any of the following set methods:
768 * - {@link cm_info::set_after_edit_icons()}
769 * - {@link cm_info::set_after_link()}
770 * - {@link cm_info::set_content()}
771 * - {@link cm_info::set_extra_classes()}
773 * @property-read int $id Course-module ID - from course_modules table
774 * @property-read int $instance Module instance (ID within module table) - from course_modules table
775 * @property-read int $course Course ID - from course_modules table
776 * @property-read string $idnumber 'ID number' from course-modules table (arbitrary text set by user) - from
777 * course_modules table
778 * @property-read int $added Time that this course-module was added (unix time) - from course_modules table
779 * @property-read int $visible Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
780 * course_modules table
781 * @property-read int $visibleoncoursepage Visible on course page setting - from course_modules table, adjusted to
782 * whether course format allows this module to have the "stealth" mode
783 * @property-read int $visibleold Old visible setting (if the entire section is hidden, the previous value for
784 * visible is stored in this field) - from course_modules table
785 * @property-read int $groupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
786 * course_modules table. Use {@link cm_info::$effectivegroupmode} to find the actual group mode that may be forced by course.
787 * @property-read int $groupingid Grouping ID (0 = all groupings)
788 * @property-read bool $coursegroupmodeforce Indicates whether the course containing the module has forced the groupmode
789 * This means that cm_info::$groupmode should be ignored and cm_info::$coursegroupmode be used instead
790 * @property-read int $coursegroupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
791 * course table - as specified for the course containing the module
792 * Effective only if {@link cm_info::$coursegroupmodeforce} is set
793 * @property-read int $effectivegroupmode Effective group mode for this module (one of the constants NOGROUPS, SEPARATEGROUPS,
794 * or VISIBLEGROUPS). This can be different from groupmode set for the module if the groupmode is forced for the course.
795 * This value will always be NOGROUPS if module type does not support group mode.
796 * @property-read int $indent Indent level on course page (0 = no indent) - from course_modules table
797 * @property-read int $completion Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
798 * course_modules table
799 * @property-read mixed $completiongradeitemnumber Set to the item number (usually 0) if completion depends on a particular
800 * grade of this activity, or null if completion does not depend on a grade - from course_modules table
801 * @property-read int $completionview 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
802 * @property-read int $completionexpected Set to a unix time if completion of this activity is expected at a
803 * particular time, 0 if no time set - from course_modules table
804 * @property-read string $availability Availability information as JSON string or null if none -
805 * from course_modules table
806 * @property-read int $showdescription Controls whether the description of the activity displays on the course main page (in
807 * addition to anywhere it might display within the activity itself). 0 = do not show
808 * on main page, 1 = show on main page.
809 * @property-read string $extra (deprecated) Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
810 * course page - from cached data in modinfo field. Deprecated, replaced by ->extraclasses and ->onclick
811 * @property-read string $icon Name of icon to use - from cached data in modinfo field
812 * @property-read string $iconcomponent Component that contains icon - from cached data in modinfo field
813 * @property-read string $modname Name of module e.g. 'forum' (this is the same name as the module's main database
814 * table) - from cached data in modinfo field
815 * @property-read int $module ID of module type - from course_modules table
816 * @property-read string $name Name of module instance for display on page e.g. 'General discussion forum' - from cached
817 * data in modinfo field
818 * @property-read int $sectionnum Section number that this course-module is in (section 0 = above the calendar, section 1
819 * = week/topic 1, etc) - from cached data in modinfo field
820 * @property-read int $section Section id - from course_modules table
821 * @property-read array $conditionscompletion Availability conditions for this course-module based on the completion of other
822 * course-modules (array from other course-module id to required completion state for that
823 * module) - from cached data in modinfo field
824 * @property-read array $conditionsgrade Availability conditions for this course-module based on course grades (array from
825 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
826 * @property-read array $conditionsfield Availability conditions for this course-module based on user fields
827 * @property-read bool $available True if this course-module is available to students i.e. if all availability conditions
828 * are met - obtained dynamically
829 * @property-read string $availableinfo If course-module is not available to students, this string gives information about
830 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
831 * January 2010') for display on main page - obtained dynamically
832 * @property-read bool $uservisible True if this course-module is available to the CURRENT user (for example, if current user
833 * has viewhiddenactivities capability, they can access the course-module even if it is not
834 * visible or not available, so this would be true in that case)
835 * @property-read context_module $context Module context
836 * @property-read string $modfullname Returns a localised human-readable name of the module type - calculated on request
837 * @property-read string $modplural Returns a localised human-readable name of the module type in plural form - calculated on request
838 * @property-read string $content Content to display on main (view) page - calculated on request
839 * @property-read moodle_url $url URL to link to for this module, or null if it doesn't have a view page - calculated on request
840 * @property-read string $extraclasses Extra CSS classes to add to html output for this activity on main page - calculated on request
841 * @property-read string $onclick Content of HTML on-click attribute already escaped - calculated on request
842 * @property-read mixed $customdata Optional custom data stored in modinfo cache for this activity, or null if none
843 * @property-read string $afterlink Extra HTML code to display after link - calculated on request
844 * @property-read string $afterediticons Extra HTML code to display after editing icons (e.g. more icons) - calculated on request
845 * @property-read bool $deletioninprogress True if this course module is scheduled for deletion, false otherwise.
846 * @property-read bool $downloadcontent True if content download is enabled for this course module, false otherwise.
848 class cm_info implements IteratorAggregate {
850 * State: Only basic data from modinfo cache is available.
852 const STATE_BASIC = 0;
855 * State: In the process of building dynamic data (to avoid recursive calls to obtain_dynamic_data())
857 const STATE_BUILDING_DYNAMIC = 1;
860 * State: Dynamic data is available too.
862 const STATE_DYNAMIC = 2;
865 * State: In the process of building view data (to avoid recursive calls to obtain_view_data())
867 const STATE_BUILDING_VIEW = 3;
870 * State: View data (for course page) is available.
872 const STATE_VIEW = 4;
875 * Parent object
876 * @var course_modinfo
878 private $modinfo;
881 * Level of information stored inside this object (STATE_xx constant)
882 * @var int
884 private $state;
887 * Course-module ID - from course_modules table
888 * @var int
890 private $id;
893 * Module instance (ID within module table) - from course_modules table
894 * @var int
896 private $instance;
899 * 'ID number' from course-modules table (arbitrary text set by user) - from
900 * course_modules table
901 * @var string
903 private $idnumber;
906 * Time that this course-module was added (unix time) - from course_modules table
907 * @var int
909 private $added;
912 * This variable is not used and is included here only so it can be documented.
913 * Once the database entry is removed from course_modules, it should be deleted
914 * here too.
915 * @var int
916 * @deprecated Do not use this variable
918 private $score;
921 * Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
922 * course_modules table
923 * @var int
925 private $visible;
928 * Visible on course page setting - from course_modules table
929 * @var int
931 private $visibleoncoursepage;
934 * Old visible setting (if the entire section is hidden, the previous value for
935 * visible is stored in this field) - from course_modules table
936 * @var int
938 private $visibleold;
941 * Group mode (one of the constants NONE, SEPARATEGROUPS, or VISIBLEGROUPS) - from
942 * course_modules table
943 * @var int
945 private $groupmode;
948 * Grouping ID (0 = all groupings)
949 * @var int
951 private $groupingid;
954 * Indent level on course page (0 = no indent) - from course_modules table
955 * @var int
957 private $indent;
960 * Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
961 * course_modules table
962 * @var int
964 private $completion;
967 * Set to the item number (usually 0) if completion depends on a particular
968 * grade of this activity, or null if completion does not depend on a grade - from
969 * course_modules table
970 * @var mixed
972 private $completiongradeitemnumber;
975 * 1 if pass grade completion is enabled, 0 otherwise - from course_modules table
976 * @var int
978 private $completionpassgrade;
981 * 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
982 * @var int
984 private $completionview;
987 * Set to a unix time if completion of this activity is expected at a
988 * particular time, 0 if no time set - from course_modules table
989 * @var int
991 private $completionexpected;
994 * Availability information as JSON string or null if none - from course_modules table
995 * @var string
997 private $availability;
1000 * Controls whether the description of the activity displays on the course main page (in
1001 * addition to anywhere it might display within the activity itself). 0 = do not show
1002 * on main page, 1 = show on main page.
1003 * @var int
1005 private $showdescription;
1008 * Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
1009 * course page - from cached data in modinfo field
1010 * @deprecated This is crazy, don't use it. Replaced by ->extraclasses and ->onclick
1011 * @var string
1013 private $extra;
1016 * Name of icon to use - from cached data in modinfo field
1017 * @var string
1019 private $icon;
1022 * Component that contains icon - from cached data in modinfo field
1023 * @var string
1025 private $iconcomponent;
1028 * Name of module e.g. 'forum' (this is the same name as the module's main database
1029 * table) - from cached data in modinfo field
1030 * @var string
1032 private $modname;
1035 * ID of module - from course_modules table
1036 * @var int
1038 private $module;
1041 * Name of module instance for display on page e.g. 'General discussion forum' - from cached
1042 * data in modinfo field
1043 * @var string
1045 private $name;
1048 * Section number that this course-module is in (section 0 = above the calendar, section 1
1049 * = week/topic 1, etc) - from cached data in modinfo field
1050 * @var int
1052 private $sectionnum;
1055 * Section id - from course_modules table
1056 * @var int
1058 private $section;
1061 * Availability conditions for this course-module based on the completion of other
1062 * course-modules (array from other course-module id to required completion state for that
1063 * module) - from cached data in modinfo field
1064 * @var array
1066 private $conditionscompletion;
1069 * Availability conditions for this course-module based on course grades (array from
1070 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
1071 * @var array
1073 private $conditionsgrade;
1076 * Availability conditions for this course-module based on user fields
1077 * @var array
1079 private $conditionsfield;
1082 * True if this course-module is available to students i.e. if all availability conditions
1083 * are met - obtained dynamically
1084 * @var bool
1086 private $available;
1089 * If course-module is not available to students, this string gives information about
1090 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
1091 * January 2010') for display on main page - obtained dynamically
1092 * @var string
1094 private $availableinfo;
1097 * True if this course-module is available to the CURRENT user (for example, if current user
1098 * has viewhiddenactivities capability, they can access the course-module even if it is not
1099 * visible or not available, so this would be true in that case)
1100 * @var bool
1102 private $uservisible;
1105 * True if this course-module is visible to the CURRENT user on the course page
1106 * @var bool
1108 private $uservisibleoncoursepage;
1111 * @var moodle_url
1113 private $url;
1116 * @var string
1118 private $content;
1121 * @var bool
1123 private $contentisformatted;
1126 * @var string
1128 private $extraclasses;
1131 * @var moodle_url full external url pointing to icon image for activity
1133 private $iconurl;
1136 * @var string
1138 private $onclick;
1141 * @var mixed
1143 private $customdata;
1146 * @var string
1148 private $afterlink;
1151 * @var string
1153 private $afterediticons;
1156 * @var bool representing the deletion state of the module. True if the mod is scheduled for deletion.
1158 private $deletioninprogress;
1161 * @var int enable/disable download content for this course module
1163 private $downloadcontent;
1166 * List of class read-only properties and their getter methods.
1167 * Used by magic functions __get(), __isset(), __empty()
1168 * @var array
1170 private static $standardproperties = array(
1171 'url' => 'get_url',
1172 'content' => 'get_content',
1173 'extraclasses' => 'get_extra_classes',
1174 'onclick' => 'get_on_click',
1175 'customdata' => 'get_custom_data',
1176 'afterlink' => 'get_after_link',
1177 'afterediticons' => 'get_after_edit_icons',
1178 'modfullname' => 'get_module_type_name',
1179 'modplural' => 'get_module_type_name_plural',
1180 'id' => false,
1181 'added' => false,
1182 'availability' => false,
1183 'available' => 'get_available',
1184 'availableinfo' => 'get_available_info',
1185 'completion' => false,
1186 'completionexpected' => false,
1187 'completiongradeitemnumber' => false,
1188 'completionpassgrade' => false,
1189 'completionview' => false,
1190 'conditionscompletion' => false,
1191 'conditionsfield' => false,
1192 'conditionsgrade' => false,
1193 'context' => 'get_context',
1194 'course' => 'get_course_id',
1195 'coursegroupmode' => 'get_course_groupmode',
1196 'coursegroupmodeforce' => 'get_course_groupmodeforce',
1197 'effectivegroupmode' => 'get_effective_groupmode',
1198 'extra' => false,
1199 'groupingid' => false,
1200 'groupmembersonly' => 'get_deprecated_group_members_only',
1201 'groupmode' => false,
1202 'icon' => false,
1203 'iconcomponent' => false,
1204 'idnumber' => false,
1205 'indent' => false,
1206 'instance' => false,
1207 'modname' => false,
1208 'module' => false,
1209 'name' => 'get_name',
1210 'score' => false,
1211 'section' => false,
1212 'sectionnum' => false,
1213 'showdescription' => false,
1214 'uservisible' => 'get_user_visible',
1215 'visible' => false,
1216 'visibleoncoursepage' => false,
1217 'visibleold' => false,
1218 'deletioninprogress' => false,
1219 'downloadcontent' => false
1223 * List of methods with no arguments that were public prior to Moodle 2.6.
1225 * They can still be accessed publicly via magic __call() function with no warnings
1226 * but are not listed in the class methods list.
1227 * For the consistency of the code it is better to use corresponding properties.
1229 * These methods be deprecated completely in later versions.
1231 * @var array $standardmethods
1233 private static $standardmethods = array(
1234 // Following methods are not recommended to use because there have associated read-only properties.
1235 'get_url',
1236 'get_content',
1237 'get_extra_classes',
1238 'get_on_click',
1239 'get_custom_data',
1240 'get_after_link',
1241 'get_after_edit_icons',
1242 // Method obtain_dynamic_data() should not be called from outside of this class but it was public before Moodle 2.6.
1243 'obtain_dynamic_data',
1247 * Magic method to call functions that are now declared as private but were public in Moodle before 2.6.
1248 * These private methods can not be used anymore.
1250 * @param string $name
1251 * @param array $arguments
1252 * @return mixed
1253 * @throws coding_exception
1255 public function __call($name, $arguments) {
1256 if (in_array($name, self::$standardmethods)) {
1257 $message = "cm_info::$name() can not be used anymore.";
1258 if ($alternative = array_search($name, self::$standardproperties)) {
1259 $message .= " Please use the property cm_info->$alternative instead.";
1261 throw new coding_exception($message);
1263 throw new coding_exception("Method cm_info::{$name}() does not exist");
1267 * Magic method getter
1269 * @param string $name
1270 * @return mixed
1272 public function __get($name) {
1273 if (isset(self::$standardproperties[$name])) {
1274 if ($method = self::$standardproperties[$name]) {
1275 return $this->$method();
1276 } else {
1277 return $this->$name;
1279 } else {
1280 debugging('Invalid cm_info property accessed: '.$name);
1281 return null;
1286 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
1287 * and use {@link convert_to_array()}
1289 * @return ArrayIterator
1291 public function getIterator() {
1292 // Make sure dynamic properties are retrieved prior to view properties.
1293 $this->obtain_dynamic_data();
1294 $ret = array();
1296 // Do not iterate over deprecated properties.
1297 $props = self::$standardproperties;
1298 unset($props['groupmembersonly']);
1300 foreach ($props as $key => $unused) {
1301 $ret[$key] = $this->__get($key);
1303 return new ArrayIterator($ret);
1307 * Magic method for function isset()
1309 * @param string $name
1310 * @return bool
1312 public function __isset($name) {
1313 if (isset(self::$standardproperties[$name])) {
1314 $value = $this->__get($name);
1315 return isset($value);
1317 return false;
1321 * Magic method for function empty()
1323 * @param string $name
1324 * @return bool
1326 public function __empty($name) {
1327 if (isset(self::$standardproperties[$name])) {
1328 $value = $this->__get($name);
1329 return empty($value);
1331 return true;
1335 * Magic method setter
1337 * Will display the developer warning when trying to set/overwrite property.
1339 * @param string $name
1340 * @param mixed $value
1342 public function __set($name, $value) {
1343 debugging("It is not allowed to set the property cm_info::\${$name}", DEBUG_DEVELOPER);
1347 * @return bool True if this module has a 'view' page that should be linked to in navigation
1348 * etc (note: modules may still have a view.php file, but return false if this is not
1349 * intended to be linked to from 'normal' parts of the interface; this is what label does).
1351 public function has_view() {
1352 return !is_null($this->url);
1356 * Gets the URL to link to for this module.
1358 * This method is normally called by the property ->url, but can be called directly if
1359 * there is a case when it might be called recursively (you can't call property values
1360 * recursively).
1362 * @return moodle_url URL to link to for this module, or null if it doesn't have a view page
1364 public function get_url() {
1365 $this->obtain_dynamic_data();
1366 return $this->url;
1370 * Obtains content to display on main (view) page.
1371 * Note: Will collect view data, if not already obtained.
1372 * @return string Content to display on main page below link, or empty string if none
1374 private function get_content() {
1375 $this->obtain_view_data();
1376 return $this->content;
1380 * Returns the content to display on course/overview page, formatted and passed through filters
1382 * if $options['context'] is not specified, the module context is used
1384 * @param array|stdClass $options formatting options, see {@link format_text()}
1385 * @return string
1387 public function get_formatted_content($options = array()) {
1388 $this->obtain_view_data();
1389 if (empty($this->content)) {
1390 return '';
1392 if ($this->contentisformatted) {
1393 return $this->content;
1396 // Improve filter performance by preloading filter setttings for all
1397 // activities on the course (this does nothing if called multiple
1398 // times)
1399 filter_preload_activities($this->get_modinfo());
1401 $options = (array)$options;
1402 if (!isset($options['context'])) {
1403 $options['context'] = $this->get_context();
1405 return format_text($this->content, FORMAT_HTML, $options);
1409 * Getter method for property $name, ensures that dynamic data is obtained.
1411 * This method is normally called by the property ->name, but can be called directly if there
1412 * is a case when it might be called recursively (you can't call property values recursively).
1414 * @return string
1416 public function get_name() {
1417 $this->obtain_dynamic_data();
1418 return $this->name;
1422 * Returns the name to display on course/overview page, formatted and passed through filters
1424 * if $options['context'] is not specified, the module context is used
1426 * @param array|stdClass $options formatting options, see {@link format_string()}
1427 * @return string
1429 public function get_formatted_name($options = array()) {
1430 global $CFG;
1431 $options = (array)$options;
1432 if (!isset($options['context'])) {
1433 $options['context'] = $this->get_context();
1435 // Improve filter performance by preloading filter setttings for all
1436 // activities on the course (this does nothing if called multiple
1437 // times).
1438 if (!empty($CFG->filterall)) {
1439 filter_preload_activities($this->get_modinfo());
1441 return format_string($this->get_name(), true, $options);
1445 * Note: Will collect view data, if not already obtained.
1446 * @return string Extra CSS classes to add to html output for this activity on main page
1448 private function get_extra_classes() {
1449 $this->obtain_view_data();
1450 return $this->extraclasses;
1454 * @return string Content of HTML on-click attribute. This string will be used literally
1455 * as a string so should be pre-escaped.
1457 private function get_on_click() {
1458 // Does not need view data; may be used by navigation
1459 $this->obtain_dynamic_data();
1460 return $this->onclick;
1463 * Getter method for property $customdata, ensures that dynamic data is retrieved.
1465 * This method is normally called by the property ->customdata, but can be called directly if there
1466 * is a case when it might be called recursively (you can't call property values recursively).
1468 * @return mixed Optional custom data stored in modinfo cache for this activity, or null if none
1470 public function get_custom_data() {
1471 $this->obtain_dynamic_data();
1472 return $this->customdata;
1476 * Note: Will collect view data, if not already obtained.
1477 * @return string Extra HTML code to display after link
1479 private function get_after_link() {
1480 $this->obtain_view_data();
1481 return $this->afterlink;
1485 * Note: Will collect view data, if not already obtained.
1486 * @return string Extra HTML code to display after editing icons (e.g. more icons)
1488 private function get_after_edit_icons() {
1489 $this->obtain_view_data();
1490 return $this->afterediticons;
1494 * @param moodle_core_renderer $output Output render to use, or null for default (global)
1495 * @return moodle_url Icon URL for a suitable icon to put beside this cm
1497 public function get_icon_url($output = null) {
1498 global $OUTPUT;
1499 $this->obtain_dynamic_data();
1500 if (!$output) {
1501 $output = $OUTPUT;
1503 // Support modules setting their own, external, icon image
1504 if (!empty($this->iconurl)) {
1505 $icon = $this->iconurl;
1507 // Fallback to normal local icon + component procesing
1508 } else if (!empty($this->icon)) {
1509 if (substr($this->icon, 0, 4) === 'mod/') {
1510 list($modname, $iconname) = explode('/', substr($this->icon, 4), 2);
1511 $icon = $output->image_url($iconname, $modname);
1512 } else {
1513 if (!empty($this->iconcomponent)) {
1514 // Icon has specified component
1515 $icon = $output->image_url($this->icon, $this->iconcomponent);
1516 } else {
1517 // Icon does not have specified component, use default
1518 $icon = $output->image_url($this->icon);
1521 } else {
1522 $icon = $output->image_url('icon', $this->modname);
1524 return $icon;
1528 * @param string $textclasses additionnal classes for grouping label
1529 * @return string An empty string or HTML grouping label span tag
1531 public function get_grouping_label($textclasses = '') {
1532 $groupinglabel = '';
1533 if ($this->effectivegroupmode != NOGROUPS && !empty($this->groupingid) &&
1534 has_capability('moodle/course:managegroups', context_course::instance($this->course))) {
1535 $groupings = groups_get_all_groupings($this->course);
1536 $groupinglabel = html_writer::tag('span', '('.format_string($groupings[$this->groupingid]->name).')',
1537 array('class' => 'groupinglabel '.$textclasses));
1539 return $groupinglabel;
1543 * Returns a localised human-readable name of the module type
1545 * @param bool $plural return plural form
1546 * @return string
1548 public function get_module_type_name($plural = false) {
1549 $modnames = get_module_types_names($plural);
1550 if (isset($modnames[$this->modname])) {
1551 return $modnames[$this->modname];
1552 } else {
1553 return null;
1558 * Returns a localised human-readable name of the module type in plural form - calculated on request
1560 * @return string
1562 private function get_module_type_name_plural() {
1563 return $this->get_module_type_name(true);
1567 * @return course_modinfo Modinfo object that this came from
1569 public function get_modinfo() {
1570 return $this->modinfo;
1574 * Returns the section this module belongs to
1576 * @return section_info
1578 public function get_section_info() {
1579 return $this->modinfo->get_section_info($this->sectionnum);
1583 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
1585 * It may not contain all fields from DB table {course} but always has at least the following:
1586 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
1588 * If the course object lacks the field you need you can use the global
1589 * function {@link get_course()} that will save extra query if you access
1590 * current course or frontpage course.
1592 * @return stdClass
1594 public function get_course() {
1595 return $this->modinfo->get_course();
1599 * Returns course id for which the modinfo was generated.
1601 * @return int
1603 private function get_course_id() {
1604 return $this->modinfo->get_course_id();
1608 * Returns group mode used for the course containing the module
1610 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1612 private function get_course_groupmode() {
1613 return $this->modinfo->get_course()->groupmode;
1617 * Returns whether group mode is forced for the course containing the module
1619 * @return bool
1621 private function get_course_groupmodeforce() {
1622 return $this->modinfo->get_course()->groupmodeforce;
1626 * Returns effective groupmode of the module that may be overwritten by forced course groupmode.
1628 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1630 private function get_effective_groupmode() {
1631 $groupmode = $this->groupmode;
1632 if ($this->modinfo->get_course()->groupmodeforce) {
1633 $groupmode = $this->modinfo->get_course()->groupmode;
1634 if ($groupmode != NOGROUPS && !plugin_supports('mod', $this->modname, FEATURE_GROUPS, false)) {
1635 $groupmode = NOGROUPS;
1638 return $groupmode;
1642 * @return context_module Current module context
1644 private function get_context() {
1645 return context_module::instance($this->id);
1649 * Returns itself in the form of stdClass.
1651 * The object includes all fields that table course_modules has and additionally
1652 * fields 'name', 'modname', 'sectionnum' (if requested).
1654 * This can be used as a faster alternative to {@link get_coursemodule_from_id()}
1656 * @param bool $additionalfields include additional fields 'name', 'modname', 'sectionnum'
1657 * @return stdClass
1659 public function get_course_module_record($additionalfields = false) {
1660 $cmrecord = new stdClass();
1662 // Standard fields from table course_modules.
1663 static $cmfields = array('id', 'course', 'module', 'instance', 'section', 'idnumber', 'added',
1664 'score', 'indent', 'visible', 'visibleoncoursepage', 'visibleold', 'groupmode', 'groupingid',
1665 'completion', 'completiongradeitemnumber', 'completionview', 'completionexpected', 'completionpassgrade',
1666 'showdescription', 'availability', 'deletioninprogress', 'downloadcontent');
1668 foreach ($cmfields as $key) {
1669 $cmrecord->$key = $this->$key;
1672 // Additional fields that function get_coursemodule_from_id() adds.
1673 if ($additionalfields) {
1674 $cmrecord->name = $this->name;
1675 $cmrecord->modname = $this->modname;
1676 $cmrecord->sectionnum = $this->sectionnum;
1679 return $cmrecord;
1682 // Set functions
1683 ////////////////
1686 * Sets content to display on course view page below link (if present).
1687 * @param string $content New content as HTML string (empty string if none)
1688 * @param bool $isformatted Whether user content is already passed through format_text/format_string and should not
1689 * be formatted again. This can be useful when module adds interactive elements on top of formatted user text.
1690 * @return void
1692 public function set_content($content, $isformatted = false) {
1693 $this->content = $content;
1694 $this->contentisformatted = $isformatted;
1698 * Sets extra classes to include in CSS.
1699 * @param string $extraclasses Extra classes (empty string if none)
1700 * @return void
1702 public function set_extra_classes($extraclasses) {
1703 $this->extraclasses = $extraclasses;
1707 * Sets the external full url that points to the icon being used
1708 * by the activity. Useful for external-tool modules (lti...)
1709 * If set, takes precedence over $icon and $iconcomponent
1711 * @param moodle_url $iconurl full external url pointing to icon image for activity
1712 * @return void
1714 public function set_icon_url(moodle_url $iconurl) {
1715 $this->iconurl = $iconurl;
1719 * Sets value of on-click attribute for JavaScript.
1720 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1721 * @param string $onclick New onclick attribute which should be HTML-escaped
1722 * (empty string if none)
1723 * @return void
1725 public function set_on_click($onclick) {
1726 $this->check_not_view_only();
1727 $this->onclick = $onclick;
1731 * Overrides the value of an element in the customdata array.
1733 * @param string $name The key in the customdata array
1734 * @param mixed $value The value
1736 public function override_customdata($name, $value) {
1737 if (!is_array($this->customdata)) {
1738 $this->customdata = [];
1740 $this->customdata[$name] = $value;
1744 * Sets HTML that displays after link on course view page.
1745 * @param string $afterlink HTML string (empty string if none)
1746 * @return void
1748 public function set_after_link($afterlink) {
1749 $this->afterlink = $afterlink;
1753 * Sets HTML that displays after edit icons on course view page.
1754 * @param string $afterediticons HTML string (empty string if none)
1755 * @return void
1757 public function set_after_edit_icons($afterediticons) {
1758 $this->afterediticons = $afterediticons;
1762 * Changes the name (text of link) for this module instance.
1763 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1764 * @param string $name Name of activity / link text
1765 * @return void
1767 public function set_name($name) {
1768 if ($this->state < self::STATE_BUILDING_DYNAMIC) {
1769 $this->update_user_visible();
1771 $this->name = $name;
1775 * Turns off the view link for this module instance.
1776 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1777 * @return void
1779 public function set_no_view_link() {
1780 $this->check_not_view_only();
1781 $this->url = null;
1785 * Sets the 'uservisible' flag. This can be used (by setting false) to prevent access and
1786 * display of this module link for the current user.
1787 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1788 * @param bool $uservisible
1789 * @return void
1791 public function set_user_visible($uservisible) {
1792 $this->check_not_view_only();
1793 $this->uservisible = $uservisible;
1797 * Sets the 'available' flag and related details. This flag is normally used to make
1798 * course modules unavailable until a certain date or condition is met. (When a course
1799 * module is unavailable, it is still visible to users who have viewhiddenactivities
1800 * permission.)
1802 * When this is function is called, user-visible status is recalculated automatically.
1804 * The $showavailability flag does not really do anything any more, but is retained
1805 * for backward compatibility. Setting this to false will cause $availableinfo to
1806 * be ignored.
1808 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1809 * @param bool $available False if this item is not 'available'
1810 * @param int $showavailability 0 = do not show this item at all if it's not available,
1811 * 1 = show this item greyed out with the following message
1812 * @param string $availableinfo Information about why this is not available, or
1813 * empty string if not displaying
1814 * @return void
1816 public function set_available($available, $showavailability=0, $availableinfo='') {
1817 $this->check_not_view_only();
1818 $this->available = $available;
1819 if (!$showavailability) {
1820 $availableinfo = '';
1822 $this->availableinfo = $availableinfo;
1823 $this->update_user_visible();
1827 * Some set functions can only be called from _cm_info_dynamic and not _cm_info_view.
1828 * This is because they may affect parts of this object which are used on pages other
1829 * than the view page (e.g. in the navigation block, or when checking access on
1830 * module pages).
1831 * @return void
1833 private function check_not_view_only() {
1834 if ($this->state >= self::STATE_DYNAMIC) {
1835 throw new coding_exception('Cannot set this data from _cm_info_view because it may ' .
1836 'affect other pages as well as view');
1841 * Constructor should not be called directly; use {@link get_fast_modinfo()}
1843 * @param course_modinfo $modinfo Parent object
1844 * @param stdClass $notused1 Argument not used
1845 * @param stdClass $mod Module object from the modinfo field of course table
1846 * @param stdClass $notused2 Argument not used
1848 public function __construct(course_modinfo $modinfo, $notused1, $mod, $notused2) {
1849 $this->modinfo = $modinfo;
1851 $this->id = $mod->cm;
1852 $this->instance = $mod->id;
1853 $this->modname = $mod->mod;
1854 $this->idnumber = isset($mod->idnumber) ? $mod->idnumber : '';
1855 $this->name = $mod->name;
1856 $this->visible = $mod->visible;
1857 $this->visibleoncoursepage = $mod->visibleoncoursepage;
1858 $this->sectionnum = $mod->section; // Note weirdness with name here
1859 $this->groupmode = isset($mod->groupmode) ? $mod->groupmode : 0;
1860 $this->groupingid = isset($mod->groupingid) ? $mod->groupingid : 0;
1861 $this->indent = isset($mod->indent) ? $mod->indent : 0;
1862 $this->extra = isset($mod->extra) ? $mod->extra : '';
1863 $this->extraclasses = isset($mod->extraclasses) ? $mod->extraclasses : '';
1864 // iconurl may be stored as either string or instance of moodle_url.
1865 $this->iconurl = isset($mod->iconurl) ? new moodle_url($mod->iconurl) : '';
1866 $this->onclick = isset($mod->onclick) ? $mod->onclick : '';
1867 $this->content = isset($mod->content) ? $mod->content : '';
1868 $this->icon = isset($mod->icon) ? $mod->icon : '';
1869 $this->iconcomponent = isset($mod->iconcomponent) ? $mod->iconcomponent : '';
1870 $this->customdata = isset($mod->customdata) ? $mod->customdata : '';
1871 $this->showdescription = isset($mod->showdescription) ? $mod->showdescription : 0;
1872 $this->state = self::STATE_BASIC;
1874 $this->section = isset($mod->sectionid) ? $mod->sectionid : 0;
1875 $this->module = isset($mod->module) ? $mod->module : 0;
1876 $this->added = isset($mod->added) ? $mod->added : 0;
1877 $this->score = isset($mod->score) ? $mod->score : 0;
1878 $this->visibleold = isset($mod->visibleold) ? $mod->visibleold : 0;
1879 $this->deletioninprogress = isset($mod->deletioninprogress) ? $mod->deletioninprogress : 0;
1880 $this->downloadcontent = $mod->downloadcontent ?? null;
1882 // Note: it saves effort and database space to always include the
1883 // availability and completion fields, even if availability or completion
1884 // are actually disabled
1885 $this->completion = isset($mod->completion) ? $mod->completion : 0;
1886 $this->completionpassgrade = isset($mod->completionpassgrade) ? $mod->completionpassgrade : 0;
1887 $this->completiongradeitemnumber = isset($mod->completiongradeitemnumber)
1888 ? $mod->completiongradeitemnumber : null;
1889 $this->completionview = isset($mod->completionview)
1890 ? $mod->completionview : 0;
1891 $this->completionexpected = isset($mod->completionexpected)
1892 ? $mod->completionexpected : 0;
1893 $this->availability = isset($mod->availability) ? $mod->availability : null;
1894 $this->conditionscompletion = isset($mod->conditionscompletion)
1895 ? $mod->conditionscompletion : array();
1896 $this->conditionsgrade = isset($mod->conditionsgrade)
1897 ? $mod->conditionsgrade : array();
1898 $this->conditionsfield = isset($mod->conditionsfield)
1899 ? $mod->conditionsfield : array();
1901 static $modviews = array();
1902 if (!isset($modviews[$this->modname])) {
1903 $modviews[$this->modname] = !plugin_supports('mod', $this->modname,
1904 FEATURE_NO_VIEW_LINK);
1906 $this->url = $modviews[$this->modname]
1907 ? new moodle_url('/mod/' . $this->modname . '/view.php', array('id'=>$this->id))
1908 : null;
1912 * Creates a cm_info object from a database record (also accepts cm_info
1913 * in which case it is just returned unchanged).
1915 * @param stdClass|cm_info|null|bool $cm Stdclass or cm_info (or null or false)
1916 * @param int $userid Optional userid (default to current)
1917 * @return cm_info|null Object as cm_info, or null if input was null/false
1919 public static function create($cm, $userid = 0) {
1920 // Null, false, etc. gets passed through as null.
1921 if (!$cm) {
1922 return null;
1924 // If it is already a cm_info object, just return it.
1925 if ($cm instanceof cm_info) {
1926 return $cm;
1928 // Otherwise load modinfo.
1929 if (empty($cm->id) || empty($cm->course)) {
1930 throw new coding_exception('$cm must contain ->id and ->course');
1932 $modinfo = get_fast_modinfo($cm->course, $userid);
1933 return $modinfo->get_cm($cm->id);
1937 * If dynamic data for this course-module is not yet available, gets it.
1939 * This function is automatically called when requesting any course_modinfo property
1940 * that can be modified by modules (have a set_xxx method).
1942 * Dynamic data is data which does not come directly from the cache but is calculated at
1943 * runtime based on the current user. Primarily this concerns whether the user can access
1944 * the module or not.
1946 * As part of this function, the module's _cm_info_dynamic function from its lib.php will
1947 * be called (if it exists). Make sure that the functions that are called here do not use
1948 * any getter magic method from cm_info.
1949 * @return void
1951 private function obtain_dynamic_data() {
1952 global $CFG;
1953 $userid = $this->modinfo->get_user_id();
1954 if ($this->state >= self::STATE_BUILDING_DYNAMIC || $userid == -1) {
1955 return;
1957 $this->state = self::STATE_BUILDING_DYNAMIC;
1959 if (!empty($CFG->enableavailability)) {
1960 // Get availability information.
1961 $ci = new \core_availability\info_module($this);
1963 // Note that the modinfo currently available only includes minimal details (basic data)
1964 // but we know that this function does not need anything more than basic data.
1965 $this->available = $ci->is_available($this->availableinfo, true,
1966 $userid, $this->modinfo);
1967 } else {
1968 $this->available = true;
1971 // Check parent section.
1972 if ($this->available) {
1973 $parentsection = $this->modinfo->get_section_info($this->sectionnum);
1974 if (!$parentsection->get_available()) {
1975 // Do not store info from section here, as that is already
1976 // presented from the section (if appropriate) - just change
1977 // the flag
1978 $this->available = false;
1982 // Update visible state for current user.
1983 $this->update_user_visible();
1985 // Let module make dynamic changes at this point
1986 $this->call_mod_function('cm_info_dynamic');
1987 $this->state = self::STATE_DYNAMIC;
1991 * Getter method for property $uservisible, ensures that dynamic data is retrieved.
1993 * This method is normally called by the property ->uservisible, but can be called directly if
1994 * there is a case when it might be called recursively (you can't call property values
1995 * recursively).
1997 * @return bool
1999 public function get_user_visible() {
2000 $this->obtain_dynamic_data();
2001 return $this->uservisible;
2005 * Returns whether this module is visible to the current user on course page
2007 * Activity may be visible on the course page but not available, for example
2008 * when it is hidden conditionally but the condition information is displayed.
2010 * @return bool
2012 public function is_visible_on_course_page() {
2013 $this->obtain_dynamic_data();
2014 return $this->uservisibleoncoursepage;
2018 * Whether this module is available but hidden from course page
2020 * "Stealth" modules are the ones that are not shown on course page but available by following url.
2021 * They are normally also displayed in grade reports and other reports.
2022 * Module will be stealth either if visibleoncoursepage=0 or it is a visible module inside the hidden
2023 * section.
2025 * @return bool
2027 public function is_stealth() {
2028 return !$this->visibleoncoursepage ||
2029 ($this->visible && ($section = $this->get_section_info()) && !$section->visible);
2033 * Getter method for property $available, ensures that dynamic data is retrieved
2034 * @return bool
2036 private function get_available() {
2037 $this->obtain_dynamic_data();
2038 return $this->available;
2042 * This method can not be used anymore.
2044 * @see \core_availability\info_module::filter_user_list()
2045 * @deprecated Since Moodle 2.8
2047 private function get_deprecated_group_members_only() {
2048 throw new coding_exception('$cm->groupmembersonly can not be used anymore. ' .
2049 'If used to restrict a list of enrolled users to only those who can ' .
2050 'access the module, consider \core_availability\info_module::filter_user_list.');
2054 * Getter method for property $availableinfo, ensures that dynamic data is retrieved
2056 * @return string Available info (HTML)
2058 private function get_available_info() {
2059 $this->obtain_dynamic_data();
2060 return $this->availableinfo;
2064 * Works out whether activity is available to the current user
2066 * If the activity is unavailable, additional checks are required to determine if its hidden or greyed out
2068 * @return void
2070 private function update_user_visible() {
2071 $userid = $this->modinfo->get_user_id();
2072 if ($userid == -1) {
2073 return null;
2075 $this->uservisible = true;
2077 // If the module is being deleted, set the uservisible state to false and return.
2078 if ($this->deletioninprogress) {
2079 $this->uservisible = false;
2080 return null;
2083 // If the user cannot access the activity set the uservisible flag to false.
2084 // Additional checks are required to determine whether the activity is entirely hidden or just greyed out.
2085 if ((!$this->visible && !has_capability('moodle/course:viewhiddenactivities', $this->get_context(), $userid)) ||
2086 (!$this->get_available() &&
2087 !has_capability('moodle/course:ignoreavailabilityrestrictions', $this->get_context(), $userid))) {
2089 $this->uservisible = false;
2092 // Check group membership.
2093 if ($this->is_user_access_restricted_by_capability()) {
2095 $this->uservisible = false;
2096 // Ensure activity is completely hidden from the user.
2097 $this->availableinfo = '';
2100 $this->uservisibleoncoursepage = $this->uservisible &&
2101 ($this->visibleoncoursepage ||
2102 has_capability('moodle/course:manageactivities', $this->get_context(), $userid) ||
2103 has_capability('moodle/course:activityvisibility', $this->get_context(), $userid));
2104 // Activity that is not available, not hidden from course page and has availability
2105 // info is actually visible on the course page (with availability info and without a link).
2106 if (!$this->uservisible && $this->visibleoncoursepage && $this->availableinfo) {
2107 $this->uservisibleoncoursepage = true;
2112 * This method has been deprecated and should not be used.
2114 * @see $uservisible
2115 * @deprecated Since Moodle 2.8
2117 public function is_user_access_restricted_by_group() {
2118 throw new coding_exception('cm_info::is_user_access_restricted_by_group() can not be used any more.' .
2119 ' Use $cm->uservisible to decide whether the current user can access an activity.');
2123 * Checks whether mod/...:view capability restricts the current user's access.
2125 * @return bool True if the user access is restricted.
2127 public function is_user_access_restricted_by_capability() {
2128 $userid = $this->modinfo->get_user_id();
2129 if ($userid == -1) {
2130 return null;
2132 $capability = 'mod/' . $this->modname . ':view';
2133 $capabilityinfo = get_capability_info($capability);
2134 if (!$capabilityinfo) {
2135 // Capability does not exist, no one is prevented from seeing the activity.
2136 return false;
2139 // You are blocked if you don't have the capability.
2140 return !has_capability($capability, $this->get_context(), $userid);
2144 * Checks whether the module's conditional access settings mean that the
2145 * user cannot see the activity at all
2147 * @deprecated since 2.7 MDL-44070
2149 public function is_user_access_restricted_by_conditional_access() {
2150 throw new coding_exception('cm_info::is_user_access_restricted_by_conditional_access() ' .
2151 'can not be used any more; this function is not needed (use $cm->uservisible ' .
2152 'and $cm->availableinfo to decide whether it should be available ' .
2153 'or appear)');
2157 * Calls a module function (if exists), passing in one parameter: this object.
2158 * @param string $type Name of function e.g. if this is 'grooblezorb' and the modname is
2159 * 'forum' then it will try to call 'mod_forum_grooblezorb' or 'forum_grooblezorb'
2160 * @return void
2162 private function call_mod_function($type) {
2163 global $CFG;
2164 $libfile = $CFG->dirroot . '/mod/' . $this->modname . '/lib.php';
2165 if (file_exists($libfile)) {
2166 include_once($libfile);
2167 $function = 'mod_' . $this->modname . '_' . $type;
2168 if (function_exists($function)) {
2169 $function($this);
2170 } else {
2171 $function = $this->modname . '_' . $type;
2172 if (function_exists($function)) {
2173 $function($this);
2180 * If view data for this course-module is not yet available, obtains it.
2182 * This function is automatically called if any of the functions (marked) which require
2183 * view data are called.
2185 * View data is data which is needed only for displaying the course main page (& any similar
2186 * functionality on other pages) but is not needed in general. Obtaining view data may have
2187 * a performance cost.
2189 * As part of this function, the module's _cm_info_view function from its lib.php will
2190 * be called (if it exists).
2191 * @return void
2193 private function obtain_view_data() {
2194 if ($this->state >= self::STATE_BUILDING_VIEW || $this->modinfo->get_user_id() == -1) {
2195 return;
2197 $this->obtain_dynamic_data();
2198 $this->state = self::STATE_BUILDING_VIEW;
2200 // Let module make changes at this point
2201 $this->call_mod_function('cm_info_view');
2202 $this->state = self::STATE_VIEW;
2208 * Returns reference to full info about modules in course (including visibility).
2209 * Cached and as fast as possible (0 or 1 db query).
2211 * use get_fast_modinfo($courseid, 0, true) to reset the static cache for particular course
2212 * use get_fast_modinfo(0, 0, true) to reset the static cache for all courses
2214 * use rebuild_course_cache($courseid, true) to reset the application AND static cache
2215 * for particular course when it's contents has changed
2217 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
2218 * and recommended to have field 'cacherev') or just a course id. Just course id
2219 * is enough when calling get_fast_modinfo() for current course or site or when
2220 * calling for any other course for the second time.
2221 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
2222 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
2223 * @param bool $resetonly whether we want to get modinfo or just reset the cache
2224 * @return course_modinfo|null Module information for course, or null if resetting
2225 * @throws moodle_exception when course is not found (nothing is thrown if resetting)
2227 function get_fast_modinfo($courseorid, $userid = 0, $resetonly = false) {
2228 // compartibility with syntax prior to 2.4:
2229 if ($courseorid === 'reset') {
2230 debugging("Using the string 'reset' as the first argument of get_fast_modinfo() is deprecated. Use get_fast_modinfo(0,0,true) instead.", DEBUG_DEVELOPER);
2231 $courseorid = 0;
2232 $resetonly = true;
2235 // Function get_fast_modinfo() can never be called during upgrade unless it is used for clearing cache only.
2236 if (!$resetonly) {
2237 upgrade_ensure_not_running();
2240 // Function is called with $reset = true
2241 if ($resetonly) {
2242 course_modinfo::clear_instance_cache($courseorid);
2243 return null;
2246 // Function is called with $reset = false, retrieve modinfo
2247 return course_modinfo::instance($courseorid, $userid);
2251 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2252 * a cmid. If module name is also provided, it will ensure the cm is of that type.
2254 * Usage:
2255 * list($course, $cm) = get_course_and_cm_from_cmid($cmid, 'forum');
2257 * Using this method has a performance advantage because it works by loading
2258 * modinfo for the course - which will then be cached and it is needed later
2259 * in most requests. It also guarantees that the $cm object is a cm_info and
2260 * not a stdclass.
2262 * The $course object can be supplied if already known and will speed
2263 * up this function - although it is more efficient to use this function to
2264 * get the course if you are starting from a cmid.
2266 * To avoid security problems and obscure bugs, you should always specify
2267 * $modulename if the cmid value came from user input.
2269 * By default this obtains information (for example, whether user can access
2270 * the activity) for current user, but you can specify a userid if required.
2272 * @param stdClass|int $cmorid Id of course-module, or database object
2273 * @param string $modulename Optional modulename (improves security)
2274 * @param stdClass|int $courseorid Optional course object if already loaded
2275 * @param int $userid Optional userid (default = current)
2276 * @return array Array with 2 elements $course and $cm
2277 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2279 function get_course_and_cm_from_cmid($cmorid, $modulename = '', $courseorid = 0, $userid = 0) {
2280 global $DB;
2281 if (is_object($cmorid)) {
2282 $cmid = $cmorid->id;
2283 if (isset($cmorid->course)) {
2284 $courseid = (int)$cmorid->course;
2285 } else {
2286 $courseid = 0;
2288 } else {
2289 $cmid = (int)$cmorid;
2290 $courseid = 0;
2293 // Validate module name if supplied.
2294 if ($modulename && !core_component::is_valid_plugin_name('mod', $modulename)) {
2295 throw new coding_exception('Invalid modulename parameter');
2298 // Get course from last parameter if supplied.
2299 $course = null;
2300 if (is_object($courseorid)) {
2301 $course = $courseorid;
2302 } else if ($courseorid) {
2303 $courseid = (int)$courseorid;
2306 if (!$course) {
2307 if ($courseid) {
2308 // If course ID is known, get it using normal function.
2309 $course = get_course($courseid);
2310 } else {
2311 // Get course record in a single query based on cmid.
2312 $course = $DB->get_record_sql("
2313 SELECT c.*
2314 FROM {course_modules} cm
2315 JOIN {course} c ON c.id = cm.course
2316 WHERE cm.id = ?", array($cmid), MUST_EXIST);
2320 // Get cm from get_fast_modinfo.
2321 $modinfo = get_fast_modinfo($course, $userid);
2322 $cm = $modinfo->get_cm($cmid);
2323 if ($modulename && $cm->modname !== $modulename) {
2324 throw new moodle_exception('invalidcoursemodule', 'error');
2326 return array($course, $cm);
2330 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2331 * an instance id or record and module name.
2333 * Usage:
2334 * list($course, $cm) = get_course_and_cm_from_instance($forum, 'forum');
2336 * Using this method has a performance advantage because it works by loading
2337 * modinfo for the course - which will then be cached and it is needed later
2338 * in most requests. It also guarantees that the $cm object is a cm_info and
2339 * not a stdclass.
2341 * The $course object can be supplied if already known and will speed
2342 * up this function - although it is more efficient to use this function to
2343 * get the course if you are starting from an instance id.
2345 * By default this obtains information (for example, whether user can access
2346 * the activity) for current user, but you can specify a userid if required.
2348 * @param stdclass|int $instanceorid Id of module instance, or database object
2349 * @param string $modulename Modulename (required)
2350 * @param stdClass|int $courseorid Optional course object if already loaded
2351 * @param int $userid Optional userid (default = current)
2352 * @return array Array with 2 elements $course and $cm
2353 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2355 function get_course_and_cm_from_instance($instanceorid, $modulename, $courseorid = 0, $userid = 0) {
2356 global $DB;
2358 // Get data from parameter.
2359 if (is_object($instanceorid)) {
2360 $instanceid = $instanceorid->id;
2361 if (isset($instanceorid->course)) {
2362 $courseid = (int)$instanceorid->course;
2363 } else {
2364 $courseid = 0;
2366 } else {
2367 $instanceid = (int)$instanceorid;
2368 $courseid = 0;
2371 // Get course from last parameter if supplied.
2372 $course = null;
2373 if (is_object($courseorid)) {
2374 $course = $courseorid;
2375 } else if ($courseorid) {
2376 $courseid = (int)$courseorid;
2379 // Validate module name if supplied.
2380 if (!core_component::is_valid_plugin_name('mod', $modulename)) {
2381 throw new coding_exception('Invalid modulename parameter');
2384 if (!$course) {
2385 if ($courseid) {
2386 // If course ID is known, get it using normal function.
2387 $course = get_course($courseid);
2388 } else {
2389 // Get course record in a single query based on instance id.
2390 $pagetable = '{' . $modulename . '}';
2391 $course = $DB->get_record_sql("
2392 SELECT c.*
2393 FROM $pagetable instance
2394 JOIN {course} c ON c.id = instance.course
2395 WHERE instance.id = ?", array($instanceid), MUST_EXIST);
2399 // Get cm from get_fast_modinfo.
2400 $modinfo = get_fast_modinfo($course, $userid);
2401 $instances = $modinfo->get_instances_of($modulename);
2402 if (!array_key_exists($instanceid, $instances)) {
2403 throw new moodle_exception('invalidmoduleid', 'error', $instanceid);
2405 return array($course, $instances[$instanceid]);
2410 * Rebuilds or resets the cached list of course activities stored in MUC.
2412 * rebuild_course_cache() must NEVER be called from lib/db/upgrade.php.
2413 * At the same time course cache may ONLY be cleared using this function in
2414 * upgrade scripts of plugins.
2416 * During the bulk operations if it is necessary to reset cache of multiple
2417 * courses it is enough to call {@link increment_revision_number()} for the
2418 * table 'course' and field 'cacherev' specifying affected courses in select.
2420 * Cached course information is stored in MUC core/coursemodinfo and is
2421 * validated with the DB field {course}.cacherev
2423 * @global moodle_database $DB
2424 * @param int $courseid id of course to rebuild, empty means all
2425 * @param boolean $clearonly only clear the cache, gets rebuild automatically on the fly.
2426 * Recommended to set to true to avoid unnecessary multiple rebuilding.
2428 function rebuild_course_cache($courseid=0, $clearonly=false) {
2429 global $COURSE, $SITE, $DB, $CFG;
2431 // Function rebuild_course_cache() can not be called during upgrade unless it's clear only.
2432 if (!$clearonly && !upgrade_ensure_not_running(true)) {
2433 $clearonly = true;
2436 // Destroy navigation caches
2437 navigation_cache::destroy_volatile_caches();
2439 core_courseformat\base::reset_course_cache($courseid);
2441 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
2442 if (empty($courseid)) {
2443 // Clearing caches for all courses.
2444 increment_revision_number('course', 'cacherev', '');
2445 $cachecoursemodinfo->purge();
2446 course_modinfo::clear_instance_cache();
2447 // Update global values too.
2448 $sitecacherev = $DB->get_field('course', 'cacherev', array('id' => SITEID));
2449 $SITE->cachrev = $sitecacherev;
2450 if ($COURSE->id == SITEID) {
2451 $COURSE->cacherev = $sitecacherev;
2452 } else {
2453 $COURSE->cacherev = $DB->get_field('course', 'cacherev', array('id' => $COURSE->id));
2455 } else {
2456 // Clearing cache for one course, make sure it is deleted from user request cache as well.
2457 increment_revision_number('course', 'cacherev', 'id = :id', array('id' => $courseid));
2458 $cachecoursemodinfo->delete($courseid);
2459 course_modinfo::clear_instance_cache($courseid);
2460 // Update global values too.
2461 if ($courseid == $COURSE->id || $courseid == $SITE->id) {
2462 $cacherev = $DB->get_field('course', 'cacherev', array('id' => $courseid));
2463 if ($courseid == $COURSE->id) {
2464 $COURSE->cacherev = $cacherev;
2466 if ($courseid == $SITE->id) {
2467 $SITE->cachrev = $cacherev;
2472 if ($clearonly) {
2473 return;
2476 if ($courseid) {
2477 $select = array('id'=>$courseid);
2478 } else {
2479 $select = array();
2480 core_php_time_limit::raise(); // this could take a while! MDL-10954
2483 $rs = $DB->get_recordset("course", $select,'','id,'.join(',', course_modinfo::$cachedfields));
2484 // Rebuild cache for each course.
2485 foreach ($rs as $course) {
2486 course_modinfo::build_course_cache($course);
2488 $rs->close();
2493 * Class that is the return value for the _get_coursemodule_info module API function.
2495 * Note: For backward compatibility, you can also return a stdclass object from that function.
2496 * The difference is that the stdclass object may contain an 'extra' field (deprecated,
2497 * use extraclasses and onclick instead). The stdclass object may not contain
2498 * the new fields defined here (content, extraclasses, customdata).
2500 class cached_cm_info {
2502 * Name (text of link) for this activity; Leave unset to accept default name
2503 * @var string
2505 public $name;
2508 * Name of icon for this activity. Normally, this should be used together with $iconcomponent
2509 * to define the icon, as per image_url function.
2510 * For backward compatibility, if this value is of the form 'mod/forum/icon' then an icon
2511 * within that module will be used.
2512 * @see cm_info::get_icon_url()
2513 * @see renderer_base::image_url()
2514 * @var string
2516 public $icon;
2519 * Component for icon for this activity, as per image_url; leave blank to use default 'moodle'
2520 * component
2521 * @see renderer_base::image_url()
2522 * @var string
2524 public $iconcomponent;
2527 * HTML content to be displayed on the main page below the link (if any) for this course-module
2528 * @var string
2530 public $content;
2533 * Custom data to be stored in modinfo for this activity; useful if there are cases when
2534 * internal information for this activity type needs to be accessible from elsewhere on the
2535 * course without making database queries. May be of any type but should be short.
2536 * @var mixed
2538 public $customdata;
2541 * Extra CSS class or classes to be added when this activity is displayed on the main page;
2542 * space-separated string
2543 * @var string
2545 public $extraclasses;
2548 * External URL image to be used by activity as icon, useful for some external-tool modules
2549 * like lti. If set, takes precedence over $icon and $iconcomponent
2550 * @var $moodle_url
2552 public $iconurl;
2555 * Content of onclick JavaScript; escaped HTML to be inserted as attribute value
2556 * @var string
2558 public $onclick;
2563 * Data about a single section on a course. This contains the fields from the
2564 * course_sections table, plus additional data when required.
2566 * @property-read int $id Section ID - from course_sections table
2567 * @property-read int $course Course ID - from course_sections table
2568 * @property-read int $section Section number - from course_sections table
2569 * @property-read string $name Section name if specified - from course_sections table
2570 * @property-read int $visible Section visibility (1 = visible) - from course_sections table
2571 * @property-read string $summary Section summary text if specified - from course_sections table
2572 * @property-read int $summaryformat Section summary text format (FORMAT_xx constant) - from course_sections table
2573 * @property-read string $availability Availability information as JSON string -
2574 * from course_sections table
2575 * @property-read array $conditionscompletion Availability conditions for this section based on the completion of
2576 * course-modules (array from course-module id to required completion state
2577 * for that module) - from cached data in sectioncache field
2578 * @property-read array $conditionsgrade Availability conditions for this section based on course grades (array from
2579 * grade item id to object with ->min, ->max fields) - from cached data in
2580 * sectioncache field
2581 * @property-read array $conditionsfield Availability conditions for this section based on user fields
2582 * @property-read bool $available True if this section is available to the given user i.e. if all availability conditions
2583 * are met - obtained dynamically
2584 * @property-read string $availableinfo If section is not available to some users, this string gives information about
2585 * availability which can be displayed to students and/or staff (e.g. 'Available from 3 January 2010')
2586 * for display on main page - obtained dynamically
2587 * @property-read bool $uservisible True if this section is available to the given user (for example, if current user
2588 * has viewhiddensections capability, they can access the section even if it is not
2589 * visible or not available, so this would be true in that case) - obtained dynamically
2590 * @property-read string $sequence Comma-separated list of all modules in the section. Note, this field may not exactly
2591 * match course_sections.sequence if later has references to non-existing modules or not modules of not available module types.
2592 * @property-read course_modinfo $modinfo
2594 class section_info implements IteratorAggregate {
2596 * Section ID - from course_sections table
2597 * @var int
2599 private $_id;
2602 * Section number - from course_sections table
2603 * @var int
2605 private $_section;
2608 * Section name if specified - from course_sections table
2609 * @var string
2611 private $_name;
2614 * Section visibility (1 = visible) - from course_sections table
2615 * @var int
2617 private $_visible;
2620 * Section summary text if specified - from course_sections table
2621 * @var string
2623 private $_summary;
2626 * Section summary text format (FORMAT_xx constant) - from course_sections table
2627 * @var int
2629 private $_summaryformat;
2632 * Availability information as JSON string - from course_sections table
2633 * @var string
2635 private $_availability;
2638 * Availability conditions for this section based on the completion of
2639 * course-modules (array from course-module id to required completion state
2640 * for that module) - from cached data in sectioncache field
2641 * @var array
2643 private $_conditionscompletion;
2646 * Availability conditions for this section based on course grades (array from
2647 * grade item id to object with ->min, ->max fields) - from cached data in
2648 * sectioncache field
2649 * @var array
2651 private $_conditionsgrade;
2654 * Availability conditions for this section based on user fields
2655 * @var array
2657 private $_conditionsfield;
2660 * True if this section is available to students i.e. if all availability conditions
2661 * are met - obtained dynamically on request, see function {@link section_info::get_available()}
2662 * @var bool|null
2664 private $_available;
2667 * If section is not available to some users, this string gives information about
2668 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
2669 * January 2010') for display on main page - obtained dynamically on request, see
2670 * function {@link section_info::get_availableinfo()}
2671 * @var string
2673 private $_availableinfo;
2676 * True if this section is available to the CURRENT user (for example, if current user
2677 * has viewhiddensections capability, they can access the section even if it is not
2678 * visible or not available, so this would be true in that case) - obtained dynamically
2679 * on request, see function {@link section_info::get_uservisible()}
2680 * @var bool|null
2682 private $_uservisible;
2685 * Default values for sectioncache fields; if a field has this value, it won't
2686 * be stored in the sectioncache cache, to save space. Checks are done by ===
2687 * which means values must all be strings.
2688 * @var array
2690 private static $sectioncachedefaults = array(
2691 'name' => null,
2692 'summary' => '',
2693 'summaryformat' => '1', // FORMAT_HTML, but must be a string
2694 'visible' => '1',
2695 'availability' => null
2699 * Stores format options that have been cached when building 'coursecache'
2700 * When the format option is requested we look first if it has been cached
2701 * @var array
2703 private $cachedformatoptions = array();
2706 * Stores the list of all possible section options defined in each used course format.
2707 * @var array
2709 static private $sectionformatoptions = array();
2712 * Stores the modinfo object passed in constructor, may be used when requesting
2713 * dynamically obtained attributes such as available, availableinfo, uservisible.
2714 * Also used to retrun information about current course or user.
2715 * @var course_modinfo
2717 private $modinfo;
2720 * Constructs object from database information plus extra required data.
2721 * @param object $data Array entry from cached sectioncache
2722 * @param int $number Section number (array key)
2723 * @param int $notused1 argument not used (informaion is available in $modinfo)
2724 * @param int $notused2 argument not used (informaion is available in $modinfo)
2725 * @param course_modinfo $modinfo Owner (needed for checking availability)
2726 * @param int $notused3 argument not used (informaion is available in $modinfo)
2728 public function __construct($data, $number, $notused1, $notused2, $modinfo, $notused3) {
2729 global $CFG;
2730 require_once($CFG->dirroot.'/course/lib.php');
2732 // Data that is always present
2733 $this->_id = $data->id;
2735 $defaults = self::$sectioncachedefaults +
2736 array('conditionscompletion' => array(),
2737 'conditionsgrade' => array(),
2738 'conditionsfield' => array());
2740 // Data that may use default values to save cache size
2741 foreach ($defaults as $field => $value) {
2742 if (isset($data->{$field})) {
2743 $this->{'_'.$field} = $data->{$field};
2744 } else {
2745 $this->{'_'.$field} = $value;
2749 // Other data from constructor arguments.
2750 $this->_section = $number;
2751 $this->modinfo = $modinfo;
2753 // Cached course format data.
2754 $course = $modinfo->get_course();
2755 if (!isset(self::$sectionformatoptions[$course->format])) {
2756 // Store list of section format options defined in each used course format.
2757 // They do not depend on particular course but only on its format.
2758 self::$sectionformatoptions[$course->format] =
2759 course_get_format($course)->section_format_options();
2761 foreach (self::$sectionformatoptions[$course->format] as $field => $option) {
2762 if (!empty($option['cache'])) {
2763 if (isset($data->{$field})) {
2764 $this->cachedformatoptions[$field] = $data->{$field};
2765 } else if (array_key_exists('cachedefault', $option)) {
2766 $this->cachedformatoptions[$field] = $option['cachedefault'];
2773 * Magic method to check if the property is set
2775 * @param string $name name of the property
2776 * @return bool
2778 public function __isset($name) {
2779 if (method_exists($this, 'get_'.$name) ||
2780 property_exists($this, '_'.$name) ||
2781 array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2782 $value = $this->__get($name);
2783 return isset($value);
2785 return false;
2789 * Magic method to check if the property is empty
2791 * @param string $name name of the property
2792 * @return bool
2794 public function __empty($name) {
2795 if (method_exists($this, 'get_'.$name) ||
2796 property_exists($this, '_'.$name) ||
2797 array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2798 $value = $this->__get($name);
2799 return empty($value);
2801 return true;
2805 * Magic method to retrieve the property, this is either basic section property
2806 * or availability information or additional properties added by course format
2808 * @param string $name name of the property
2809 * @return bool
2811 public function __get($name) {
2812 if (method_exists($this, 'get_'.$name)) {
2813 return $this->{'get_'.$name}();
2815 if (property_exists($this, '_'.$name)) {
2816 return $this->{'_'.$name};
2818 if (array_key_exists($name, $this->cachedformatoptions)) {
2819 return $this->cachedformatoptions[$name];
2821 // precheck if the option is defined in format to avoid unnecessary DB queries in get_format_options()
2822 if (array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2823 $formatoptions = course_get_format($this->modinfo->get_course())->get_format_options($this);
2824 return $formatoptions[$name];
2826 debugging('Invalid section_info property accessed! '.$name);
2827 return null;
2831 * Finds whether this section is available at the moment for the current user.
2833 * The value can be accessed publicly as $sectioninfo->available, but can be called directly if there
2834 * is a case when it might be called recursively (you can't call property values recursively).
2836 * @return bool
2838 public function get_available() {
2839 global $CFG;
2840 $userid = $this->modinfo->get_user_id();
2841 if ($this->_available !== null || $userid == -1) {
2842 // Has already been calculated or does not need calculation.
2843 return $this->_available;
2845 $this->_available = true;
2846 $this->_availableinfo = '';
2847 if (!empty($CFG->enableavailability)) {
2848 // Get availability information.
2849 $ci = new \core_availability\info_section($this);
2850 $this->_available = $ci->is_available($this->_availableinfo, true,
2851 $userid, $this->modinfo);
2853 // Execute the hook from the course format that may override the available/availableinfo properties.
2854 $currentavailable = $this->_available;
2855 course_get_format($this->modinfo->get_course())->
2856 section_get_available_hook($this, $this->_available, $this->_availableinfo);
2857 if (!$currentavailable && $this->_available) {
2858 debugging('section_get_available_hook() can not make unavailable section available', DEBUG_DEVELOPER);
2859 $this->_available = $currentavailable;
2861 return $this->_available;
2865 * Returns the availability text shown next to the section on course page.
2867 * @return string
2869 private function get_availableinfo() {
2870 // Calling get_available() will also fill the availableinfo property
2871 // (or leave it null if there is no userid).
2872 $this->get_available();
2873 return $this->_availableinfo;
2877 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
2878 * and use {@link convert_to_array()}
2880 * @return ArrayIterator
2882 public function getIterator() {
2883 $ret = array();
2884 foreach (get_object_vars($this) as $key => $value) {
2885 if (substr($key, 0, 1) == '_') {
2886 if (method_exists($this, 'get'.$key)) {
2887 $ret[substr($key, 1)] = $this->{'get'.$key}();
2888 } else {
2889 $ret[substr($key, 1)] = $this->$key;
2893 $ret['sequence'] = $this->get_sequence();
2894 $ret['course'] = $this->get_course();
2895 $ret = array_merge($ret, course_get_format($this->modinfo->get_course())->get_format_options($this->_section));
2896 return new ArrayIterator($ret);
2900 * Works out whether activity is visible *for current user* - if this is false, they
2901 * aren't allowed to access it.
2903 * @return bool
2905 private function get_uservisible() {
2906 $userid = $this->modinfo->get_user_id();
2907 if ($this->_uservisible !== null || $userid == -1) {
2908 // Has already been calculated or does not need calculation.
2909 return $this->_uservisible;
2911 $this->_uservisible = true;
2912 if (!$this->_visible || !$this->get_available()) {
2913 $coursecontext = context_course::instance($this->get_course());
2914 if (!$this->_visible && !has_capability('moodle/course:viewhiddensections', $coursecontext, $userid) ||
2915 (!$this->get_available() &&
2916 !has_capability('moodle/course:ignoreavailabilityrestrictions', $coursecontext, $userid))) {
2918 $this->_uservisible = false;
2921 return $this->_uservisible;
2925 * Restores the course_sections.sequence value
2927 * @return string
2929 private function get_sequence() {
2930 if (!empty($this->modinfo->sections[$this->_section])) {
2931 return implode(',', $this->modinfo->sections[$this->_section]);
2932 } else {
2933 return '';
2938 * Returns course ID - from course_sections table
2940 * @return int
2942 private function get_course() {
2943 return $this->modinfo->get_course_id();
2947 * Modinfo object
2949 * @return course_modinfo
2951 private function get_modinfo() {
2952 return $this->modinfo;
2956 * Prepares section data for inclusion in sectioncache cache, removing items
2957 * that are set to defaults, and adding availability data if required.
2959 * Called by build_section_cache in course_modinfo only; do not use otherwise.
2960 * @param object $section Raw section data object
2962 public static function convert_for_section_cache($section) {
2963 global $CFG;
2965 // Course id stored in course table
2966 unset($section->course);
2967 // Section number stored in array key
2968 unset($section->section);
2969 // Sequence stored implicity in modinfo $sections array
2970 unset($section->sequence);
2972 // Remove default data
2973 foreach (self::$sectioncachedefaults as $field => $value) {
2974 // Exact compare as strings to avoid problems if some strings are set
2975 // to "0" etc.
2976 if (isset($section->{$field}) && $section->{$field} === $value) {
2977 unset($section->{$field});