MDL-61693 core_calendar: make results deterministic for better testing
[moodle.git] / lib / modinfolib.php
blob98ef37e564c71351804d292e25f53ca4aa295bc8
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 int (cm id) => cm_info object
97 * @var cm_info[]
99 private $cms;
102 * Array from string (modname) => int (instance id) => cm_info object
103 * @var cm_info[][]
105 private $instances;
108 * Groups that the current user belongs to. This value is calculated on first
109 * request to the property or function.
110 * When set, it is an array of grouping id => array of group id => group id.
111 * Includes grouping id 0 for 'all groups'.
112 * @var int[][]
114 private $groups;
117 * List of class read-only properties and their getter methods.
118 * Used by magic functions __get(), __isset(), __empty()
119 * @var array
121 private static $standardproperties = array(
122 'courseid' => 'get_course_id',
123 'userid' => 'get_user_id',
124 'sections' => 'get_sections',
125 'cms' => 'get_cms',
126 'instances' => 'get_instances',
127 'groups' => 'get_groups_all',
131 * Magic method getter
133 * @param string $name
134 * @return mixed
136 public function __get($name) {
137 if (isset(self::$standardproperties[$name])) {
138 $method = self::$standardproperties[$name];
139 return $this->$method();
140 } else {
141 debugging('Invalid course_modinfo property accessed: '.$name);
142 return null;
147 * Magic method for function isset()
149 * @param string $name
150 * @return bool
152 public function __isset($name) {
153 if (isset(self::$standardproperties[$name])) {
154 $value = $this->__get($name);
155 return isset($value);
157 return false;
161 * Magic method for function empty()
163 * @param string $name
164 * @return bool
166 public function __empty($name) {
167 if (isset(self::$standardproperties[$name])) {
168 $value = $this->__get($name);
169 return empty($value);
171 return true;
175 * Magic method setter
177 * Will display the developer warning when trying to set/overwrite existing property.
179 * @param string $name
180 * @param mixed $value
182 public function __set($name, $value) {
183 debugging("It is not allowed to set the property course_modinfo::\${$name}", DEBUG_DEVELOPER);
187 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
189 * It may not contain all fields from DB table {course} but always has at least the following:
190 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
192 * @return stdClass
194 public function get_course() {
195 return $this->course;
199 * @return int Course ID
201 public function get_course_id() {
202 return $this->course->id;
206 * @return int User ID
208 public function get_user_id() {
209 return $this->userid;
213 * @return array Array from section number (e.g. 0) to array of course-module IDs in that
214 * section; this only includes sections that contain at least one course-module
216 public function get_sections() {
217 return $this->sections;
221 * @return cm_info[] Array from course-module instance to cm_info object within this course, in
222 * order of appearance
224 public function get_cms() {
225 return $this->cms;
229 * Obtains a single course-module object (for a course-module that is on this course).
230 * @param int $cmid Course-module ID
231 * @return cm_info Information about that course-module
232 * @throws moodle_exception If the course-module does not exist
234 public function get_cm($cmid) {
235 if (empty($this->cms[$cmid])) {
236 throw new moodle_exception('invalidcoursemodule', 'error');
238 return $this->cms[$cmid];
242 * Obtains all module instances on this course.
243 * @return cm_info[][] Array from module name => array from instance id => cm_info
245 public function get_instances() {
246 return $this->instances;
250 * Returns array of localised human-readable module names used in this course
252 * @param bool $plural if true returns the plural form of modules names
253 * @return array
255 public function get_used_module_names($plural = false) {
256 $modnames = get_module_types_names($plural);
257 $modnamesused = array();
258 foreach ($this->get_cms() as $cmid => $mod) {
259 if (!isset($modnamesused[$mod->modname]) && isset($modnames[$mod->modname]) && $mod->uservisible) {
260 $modnamesused[$mod->modname] = $modnames[$mod->modname];
263 core_collator::asort($modnamesused);
264 return $modnamesused;
268 * Obtains all instances of a particular module on this course.
269 * @param $modname Name of module (not full frankenstyle) e.g. 'label'
270 * @return cm_info[] Array from instance id => cm_info for modules on this course; empty if none
272 public function get_instances_of($modname) {
273 if (empty($this->instances[$modname])) {
274 return array();
276 return $this->instances[$modname];
280 * Groups that the current user belongs to organised by grouping id. Calculated on the first request.
281 * @return int[][] array of grouping id => array of group id => group id. Includes grouping id 0 for 'all groups'
283 private function get_groups_all() {
284 if (is_null($this->groups)) {
285 // NOTE: Performance could be improved here. The system caches user groups
286 // in $USER->groupmember[$courseid] => array of groupid=>groupid. Unfortunately this
287 // structure does not include grouping information. It probably could be changed to
288 // do so, without a significant performance hit on login, thus saving this one query
289 // each request.
290 $this->groups = groups_get_user_groups($this->course->id, $this->userid);
292 return $this->groups;
296 * Returns groups that the current user belongs to on the course. Note: If not already
297 * available, this may make a database query.
298 * @param int $groupingid Grouping ID or 0 (default) for all groups
299 * @return int[] Array of int (group id) => int (same group id again); empty array if none
301 public function get_groups($groupingid = 0) {
302 $allgroups = $this->get_groups_all();
303 if (!isset($allgroups[$groupingid])) {
304 return array();
306 return $allgroups[$groupingid];
310 * Gets all sections as array from section number => data about section.
311 * @return section_info[] Array of section_info objects organised by section number
313 public function get_section_info_all() {
314 return $this->sectioninfo;
318 * Gets data about specific numbered section.
319 * @param int $sectionnumber Number (not id) of section
320 * @param int $strictness Use MUST_EXIST to throw exception if it doesn't
321 * @return section_info Information for numbered section or null if not found
323 public function get_section_info($sectionnumber, $strictness = IGNORE_MISSING) {
324 if (!array_key_exists($sectionnumber, $this->sectioninfo)) {
325 if ($strictness === MUST_EXIST) {
326 throw new moodle_exception('sectionnotexist');
327 } else {
328 return null;
331 return $this->sectioninfo[$sectionnumber];
335 * Static cache for generated course_modinfo instances
337 * @see course_modinfo::instance()
338 * @see course_modinfo::clear_instance_cache()
339 * @var course_modinfo[]
341 protected static $instancecache = array();
344 * Timestamps (microtime) when the course_modinfo instances were last accessed
346 * It is used to remove the least recent accessed instances when static cache is full
348 * @var float[]
350 protected static $cacheaccessed = array();
353 * Clears the cache used in course_modinfo::instance()
355 * Used in {@link get_fast_modinfo()} when called with argument $reset = true
356 * and in {@link rebuild_course_cache()}
358 * @param null|int|stdClass $courseorid if specified removes only cached value for this course
360 public static function clear_instance_cache($courseorid = null) {
361 if (empty($courseorid)) {
362 self::$instancecache = array();
363 self::$cacheaccessed = array();
364 return;
366 if (is_object($courseorid)) {
367 $courseorid = $courseorid->id;
369 if (isset(self::$instancecache[$courseorid])) {
370 // Unsetting static variable in PHP is peculiar, it removes the reference,
371 // but data remain in memory. Prior to unsetting, the varable needs to be
372 // set to empty to remove its remains from memory.
373 self::$instancecache[$courseorid] = '';
374 unset(self::$instancecache[$courseorid]);
375 unset(self::$cacheaccessed[$courseorid]);
380 * Returns the instance of course_modinfo for the specified course and specified user
382 * This function uses static cache for the retrieved instances. The cache
383 * size is limited by MAX_MODINFO_CACHE_SIZE. If instance is not found in
384 * the static cache or it was created for another user or the cacherev validation
385 * failed - a new instance is constructed and returned.
387 * Used in {@link get_fast_modinfo()}
389 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
390 * and recommended to have field 'cacherev') or just a course id
391 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
392 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
393 * @return course_modinfo
395 public static function instance($courseorid, $userid = 0) {
396 global $USER;
397 if (is_object($courseorid)) {
398 $course = $courseorid;
399 } else {
400 $course = (object)array('id' => $courseorid);
402 if (empty($userid)) {
403 $userid = $USER->id;
406 if (!empty(self::$instancecache[$course->id])) {
407 if (self::$instancecache[$course->id]->userid == $userid &&
408 (!isset($course->cacherev) ||
409 $course->cacherev == self::$instancecache[$course->id]->get_course()->cacherev)) {
410 // This course's modinfo for the same user was recently retrieved, return cached.
411 self::$cacheaccessed[$course->id] = microtime(true);
412 return self::$instancecache[$course->id];
413 } else {
414 // Prevent potential reference problems when switching users.
415 self::clear_instance_cache($course->id);
418 $modinfo = new course_modinfo($course, $userid);
420 // We have a limit of MAX_MODINFO_CACHE_SIZE entries to store in static variable.
421 if (count(self::$instancecache) >= MAX_MODINFO_CACHE_SIZE) {
422 // Find the course that was the least recently accessed.
423 asort(self::$cacheaccessed, SORT_NUMERIC);
424 $courseidtoremove = key(array_reverse(self::$cacheaccessed, true));
425 self::clear_instance_cache($courseidtoremove);
428 // Add modinfo to the static cache.
429 self::$instancecache[$course->id] = $modinfo;
430 self::$cacheaccessed[$course->id] = microtime(true);
432 return $modinfo;
436 * Constructs based on course.
437 * Note: This constructor should not usually be called directly.
438 * Use get_fast_modinfo($course) instead as this maintains a cache.
439 * @param stdClass $course course object, only property id is required.
440 * @param int $userid User ID
441 * @throws moodle_exception if course is not found
443 public function __construct($course, $userid) {
444 global $CFG, $COURSE, $SITE, $DB;
446 if (!isset($course->cacherev)) {
447 // We require presence of property cacherev to validate the course cache.
448 // No need to clone the $COURSE or $SITE object here because we clone it below anyway.
449 $course = get_course($course->id, false);
452 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
454 // Retrieve modinfo from cache. If not present or cacherev mismatches, call rebuild and retrieve again.
455 $coursemodinfo = $cachecoursemodinfo->get($course->id);
456 if ($coursemodinfo === false || ($course->cacherev != $coursemodinfo->cacherev)) {
457 $lock = self::get_course_cache_lock($course->id);
458 try {
459 // Only actually do the build if it's still needed after getting the lock (not if
460 // somebody else, who might have been holding the lock, built it already).
461 $coursemodinfo = $cachecoursemodinfo->get($course->id);
462 if ($coursemodinfo === false || ($course->cacherev != $coursemodinfo->cacherev)) {
463 $coursemodinfo = self::inner_build_course_cache($course, $lock);
465 } finally {
466 $lock->release();
470 // Set initial values
471 $this->userid = $userid;
472 $this->sections = array();
473 $this->cms = array();
474 $this->instances = array();
475 $this->groups = null;
477 // If we haven't already preloaded contexts for the course, do it now
478 // Modules are also cached here as long as it's the first time this course has been preloaded.
479 context_helper::preload_course($course->id);
481 // Quick integrity check: as a result of race conditions modinfo may not be regenerated after the change.
482 // It is especially dangerous if modinfo contains the deleted course module, as it results in fatal error.
483 // We can check it very cheap by validating the existence of module context.
484 if ($course->id == $COURSE->id || $course->id == $SITE->id) {
485 // Only verify current course (or frontpage) as pages with many courses may not have module contexts cached.
486 // (Uncached modules will result in a very slow verification).
487 foreach ($coursemodinfo->modinfo as $mod) {
488 if (!context_module::instance($mod->cm, IGNORE_MISSING)) {
489 debugging('Course cache integrity check failed: course module with id '. $mod->cm.
490 ' does not have context. Rebuilding cache for course '. $course->id);
491 // Re-request the course record from DB as well, don't use get_course() here.
492 $course = $DB->get_record('course', array('id' => $course->id), '*', MUST_EXIST);
493 $coursemodinfo = self::build_course_cache($course);
494 break;
499 // Overwrite unset fields in $course object with cached values, store the course object.
500 $this->course = fullclone($course);
501 foreach ($coursemodinfo as $key => $value) {
502 if ($key !== 'modinfo' && $key !== 'sectioncache' &&
503 (!isset($this->course->$key) || $key === 'cacherev')) {
504 $this->course->$key = $value;
508 // Loop through each piece of module data, constructing it
509 static $modexists = array();
510 foreach ($coursemodinfo->modinfo as $mod) {
511 if (!isset($mod->name) || strval($mod->name) === '') {
512 // something is wrong here
513 continue;
516 // Skip modules which don't exist
517 if (!array_key_exists($mod->mod, $modexists)) {
518 $modexists[$mod->mod] = file_exists("$CFG->dirroot/mod/$mod->mod/lib.php");
520 if (!$modexists[$mod->mod]) {
521 continue;
524 // Construct info for this module
525 $cm = new cm_info($this, null, $mod, null);
527 // Store module in instances and cms array
528 if (!isset($this->instances[$cm->modname])) {
529 $this->instances[$cm->modname] = array();
531 $this->instances[$cm->modname][$cm->instance] = $cm;
532 $this->cms[$cm->id] = $cm;
534 // Reconstruct sections. This works because modules are stored in order
535 if (!isset($this->sections[$cm->sectionnum])) {
536 $this->sections[$cm->sectionnum] = array();
538 $this->sections[$cm->sectionnum][] = $cm->id;
541 // Expand section objects
542 $this->sectioninfo = array();
543 foreach ($coursemodinfo->sectioncache as $number => $data) {
544 $this->sectioninfo[$number] = new section_info($data, $number, null, null,
545 $this, null);
550 * This method can not be used anymore.
552 * @see course_modinfo::build_course_cache()
553 * @deprecated since 2.6
555 public static function build_section_cache($courseid) {
556 throw new coding_exception('Function course_modinfo::build_section_cache() can not be used anymore.' .
557 ' Please use course_modinfo::build_course_cache() whenever applicable.');
561 * Builds a list of information about sections on a course to be stored in
562 * the course cache. (Does not include information that is already cached
563 * in some other way.)
565 * @param stdClass $course Course object (must contain fields
566 * @return array Information about sections, indexed by section number (not id)
568 protected static function build_course_section_cache($course) {
569 global $DB;
571 // Get section data
572 $sections = $DB->get_records('course_sections', array('course' => $course->id), 'section',
573 'section, id, course, name, summary, summaryformat, sequence, visible, availability');
574 $compressedsections = array();
576 $formatoptionsdef = course_get_format($course)->section_format_options();
577 // Remove unnecessary data and add availability
578 foreach ($sections as $number => $section) {
579 // Add cached options from course format to $section object
580 foreach ($formatoptionsdef as $key => $option) {
581 if (!empty($option['cache'])) {
582 $formatoptions = course_get_format($course)->get_format_options($section);
583 if (!array_key_exists('cachedefault', $option) || $option['cachedefault'] !== $formatoptions[$key]) {
584 $section->$key = $formatoptions[$key];
588 // Clone just in case it is reused elsewhere
589 $compressedsections[$number] = clone($section);
590 section_info::convert_for_section_cache($compressedsections[$number]);
593 return $compressedsections;
597 * Gets a lock for rebuilding the cache of a single course.
599 * Caller must release the returned lock.
601 * This is used to ensure that the cache rebuild doesn't happen multiple times in parallel.
602 * This function will wait up to 1 minute for the lock to be obtained. If the lock cannot
603 * be obtained, it throws an exception.
605 * @param int $courseid Course id
606 * @return \core\lock\lock Lock (must be released!)
607 * @throws moodle_exception If the lock cannot be obtained
609 protected static function get_course_cache_lock($courseid) {
610 // Get database lock to ensure this doesn't happen multiple times in parallel. Wait a
611 // reasonable time for the lock to be released, so we can give a suitable error message.
612 // In case the system crashes while building the course cache, the lock will automatically
613 // expire after a (slightly longer) period.
614 $lockfactory = \core\lock\lock_config::get_lock_factory('core_modinfo');
615 $lock = $lockfactory->get_lock('build_course_cache_' . $courseid,
616 self::COURSE_CACHE_LOCK_WAIT, self::COURSE_CACHE_LOCK_EXPIRY);
617 if (!$lock) {
618 throw new moodle_exception('locktimeout', '', '', null,
619 'core_modinfo/build_course_cache_' . $courseid);
621 return $lock;
625 * Builds and stores in MUC object containing information about course
626 * modules and sections together with cached fields from table course.
628 * @param stdClass $course object from DB table course. Must have property 'id'
629 * but preferably should have all cached fields.
630 * @return stdClass object with all cached keys of the course plus fields modinfo and sectioncache.
631 * The same object is stored in MUC
632 * @throws moodle_exception if course is not found (if $course object misses some of the
633 * necessary fields it is re-requested from database)
635 public static function build_course_cache($course) {
636 if (empty($course->id)) {
637 throw new coding_exception('Object $course is missing required property \id\'');
640 $lock = self::get_course_cache_lock($course->id);
641 try {
642 return self::inner_build_course_cache($course, $lock);
643 } finally {
644 $lock->release();
649 * Called to build course cache when there is already a lock obtained.
651 * @param stdClass $course object from DB table course
652 * @param \core\lock\lock $lock Lock object - not actually used, just there to indicate you have a lock
653 * @return stdClass Course object that has been stored in MUC
655 protected static function inner_build_course_cache($course, \core\lock\lock $lock) {
656 global $DB, $CFG;
657 require_once("{$CFG->dirroot}/course/lib.php");
659 // Ensure object has all necessary fields.
660 foreach (self::$cachedfields as $key) {
661 if (!isset($course->$key)) {
662 $course = $DB->get_record('course', array('id' => $course->id),
663 implode(',', array_merge(array('id'), self::$cachedfields)), MUST_EXIST);
664 break;
667 // Retrieve all information about activities and sections.
668 // This may take time on large courses and it is possible that another user modifies the same course during this process.
669 // Field cacherev stored in both DB and cache will ensure that cached data matches the current course state.
670 $coursemodinfo = new stdClass();
671 $coursemodinfo->modinfo = get_array_of_activities($course->id);
672 $coursemodinfo->sectioncache = self::build_course_section_cache($course);
673 foreach (self::$cachedfields as $key) {
674 $coursemodinfo->$key = $course->$key;
676 // Set the accumulated activities and sections information in cache, together with cacherev.
677 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
678 $cachecoursemodinfo->set($course->id, $coursemodinfo);
679 return $coursemodinfo;
685 * Data about a single module on a course. This contains most of the fields in the course_modules
686 * table, plus additional data when required.
688 * The object can be accessed by core or any plugin (i.e. course format, block, filter, etc.) as
689 * get_fast_modinfo($courseorid)->cms[$coursemoduleid]
690 * or
691 * get_fast_modinfo($courseorid)->instances[$moduletype][$instanceid]
693 * There are three stages when activity module can add/modify data in this object:
695 * <b>Stage 1 - during building the cache.</b>
696 * Allows to add to the course cache static user-independent information about the module.
697 * Modules should try to include only absolutely necessary information that may be required
698 * when displaying course view page. The information is stored in application-level cache
699 * and reset when {@link rebuild_course_cache()} is called or cache is purged by admin.
701 * Modules can implement callback XXX_get_coursemodule_info() returning instance of object
702 * {@link cached_cm_info}
704 * <b>Stage 2 - dynamic data.</b>
705 * Dynamic data is user-dependend, it is stored in request-level cache. To reset this cache
706 * {@link get_fast_modinfo()} with $reset argument may be called.
708 * Dynamic data is obtained when any of the following properties/methods is requested:
709 * - {@link cm_info::$url}
710 * - {@link cm_info::$name}
711 * - {@link cm_info::$onclick}
712 * - {@link cm_info::get_icon_url()}
713 * - {@link cm_info::$uservisible}
714 * - {@link cm_info::$available}
715 * - {@link cm_info::$availableinfo}
716 * - plus any of the properties listed in Stage 3.
718 * Modules can implement callback <b>XXX_cm_info_dynamic()</b> and inside this callback they
719 * are allowed to use any of the following set methods:
720 * - {@link cm_info::set_available()}
721 * - {@link cm_info::set_name()}
722 * - {@link cm_info::set_no_view_link()}
723 * - {@link cm_info::set_user_visible()}
724 * - {@link cm_info::set_on_click()}
725 * - {@link cm_info::set_icon_url()}
726 * Any methods affecting view elements can also be set in this callback.
728 * <b>Stage 3 (view data).</b>
729 * Also user-dependend data stored in request-level cache. Second stage is created
730 * because populating the view data can be expensive as it may access much more
731 * Moodle APIs such as filters, user information, output renderers and we
732 * don't want to request it until necessary.
733 * View data is obtained when any of the following properties/methods is requested:
734 * - {@link cm_info::$afterediticons}
735 * - {@link cm_info::$content}
736 * - {@link cm_info::get_formatted_content()}
737 * - {@link cm_info::$extraclasses}
738 * - {@link cm_info::$afterlink}
740 * Modules can implement callback <b>XXX_cm_info_view()</b> and inside this callback they
741 * are allowed to use any of the following set methods:
742 * - {@link cm_info::set_after_edit_icons()}
743 * - {@link cm_info::set_after_link()}
744 * - {@link cm_info::set_content()}
745 * - {@link cm_info::set_extra_classes()}
747 * @property-read int $id Course-module ID - from course_modules table
748 * @property-read int $instance Module instance (ID within module table) - from course_modules table
749 * @property-read int $course Course ID - from course_modules table
750 * @property-read string $idnumber 'ID number' from course-modules table (arbitrary text set by user) - from
751 * course_modules table
752 * @property-read int $added Time that this course-module was added (unix time) - from course_modules table
753 * @property-read int $visible Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
754 * course_modules table
755 * @property-read int $visibleoncoursepage Visible on course page setting - from course_modules table, adjusted to
756 * whether course format allows this module to have the "stealth" mode
757 * @property-read int $visibleold Old visible setting (if the entire section is hidden, the previous value for
758 * visible is stored in this field) - from course_modules table
759 * @property-read int $groupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
760 * course_modules table. Use {@link cm_info::$effectivegroupmode} to find the actual group mode that may be forced by course.
761 * @property-read int $groupingid Grouping ID (0 = all groupings)
762 * @property-read bool $coursegroupmodeforce Indicates whether the course containing the module has forced the groupmode
763 * This means that cm_info::$groupmode should be ignored and cm_info::$coursegroupmode be used instead
764 * @property-read int $coursegroupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
765 * course table - as specified for the course containing the module
766 * Effective only if {@link cm_info::$coursegroupmodeforce} is set
767 * @property-read int $effectivegroupmode Effective group mode for this module (one of the constants NOGROUPS, SEPARATEGROUPS,
768 * or VISIBLEGROUPS). This can be different from groupmode set for the module if the groupmode is forced for the course.
769 * This value will always be NOGROUPS if module type does not support group mode.
770 * @property-read int $indent Indent level on course page (0 = no indent) - from course_modules table
771 * @property-read int $completion Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
772 * course_modules table
773 * @property-read mixed $completiongradeitemnumber Set to the item number (usually 0) if completion depends on a particular
774 * grade of this activity, or null if completion does not depend on a grade - from course_modules table
775 * @property-read int $completionview 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
776 * @property-read int $completionexpected Set to a unix time if completion of this activity is expected at a
777 * particular time, 0 if no time set - from course_modules table
778 * @property-read string $availability Availability information as JSON string or null if none -
779 * from course_modules table
780 * @property-read int $showdescription Controls whether the description of the activity displays on the course main page (in
781 * addition to anywhere it might display within the activity itself). 0 = do not show
782 * on main page, 1 = show on main page.
783 * @property-read string $extra (deprecated) Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
784 * course page - from cached data in modinfo field. Deprecated, replaced by ->extraclasses and ->onclick
785 * @property-read string $icon Name of icon to use - from cached data in modinfo field
786 * @property-read string $iconcomponent Component that contains icon - from cached data in modinfo field
787 * @property-read string $modname Name of module e.g. 'forum' (this is the same name as the module's main database
788 * table) - from cached data in modinfo field
789 * @property-read int $module ID of module type - from course_modules table
790 * @property-read string $name Name of module instance for display on page e.g. 'General discussion forum' - from cached
791 * data in modinfo field
792 * @property-read int $sectionnum Section number that this course-module is in (section 0 = above the calendar, section 1
793 * = week/topic 1, etc) - from cached data in modinfo field
794 * @property-read int $section Section id - from course_modules table
795 * @property-read array $conditionscompletion Availability conditions for this course-module based on the completion of other
796 * course-modules (array from other course-module id to required completion state for that
797 * module) - from cached data in modinfo field
798 * @property-read array $conditionsgrade Availability conditions for this course-module based on course grades (array from
799 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
800 * @property-read array $conditionsfield Availability conditions for this course-module based on user fields
801 * @property-read bool $available True if this course-module is available to students i.e. if all availability conditions
802 * are met - obtained dynamically
803 * @property-read string $availableinfo If course-module is not available to students, this string gives information about
804 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
805 * January 2010') for display on main page - obtained dynamically
806 * @property-read bool $uservisible True if this course-module is available to the CURRENT user (for example, if current user
807 * has viewhiddenactivities capability, they can access the course-module even if it is not
808 * visible or not available, so this would be true in that case)
809 * @property-read context_module $context Module context
810 * @property-read string $modfullname Returns a localised human-readable name of the module type - calculated on request
811 * @property-read string $modplural Returns a localised human-readable name of the module type in plural form - calculated on request
812 * @property-read string $content Content to display on main (view) page - calculated on request
813 * @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
814 * @property-read string $extraclasses Extra CSS classes to add to html output for this activity on main page - calculated on request
815 * @property-read string $onclick Content of HTML on-click attribute already escaped - calculated on request
816 * @property-read mixed $customdata Optional custom data stored in modinfo cache for this activity, or null if none
817 * @property-read string $afterlink Extra HTML code to display after link - calculated on request
818 * @property-read string $afterediticons Extra HTML code to display after editing icons (e.g. more icons) - calculated on request
819 * @property-read bool $deletioninprogress True if this course module is scheduled for deletion, false otherwise.
821 class cm_info implements IteratorAggregate {
823 * State: Only basic data from modinfo cache is available.
825 const STATE_BASIC = 0;
828 * State: In the process of building dynamic data (to avoid recursive calls to obtain_dynamic_data())
830 const STATE_BUILDING_DYNAMIC = 1;
833 * State: Dynamic data is available too.
835 const STATE_DYNAMIC = 2;
838 * State: In the process of building view data (to avoid recursive calls to obtain_view_data())
840 const STATE_BUILDING_VIEW = 3;
843 * State: View data (for course page) is available.
845 const STATE_VIEW = 4;
848 * Parent object
849 * @var course_modinfo
851 private $modinfo;
854 * Level of information stored inside this object (STATE_xx constant)
855 * @var int
857 private $state;
860 * Course-module ID - from course_modules table
861 * @var int
863 private $id;
866 * Module instance (ID within module table) - from course_modules table
867 * @var int
869 private $instance;
872 * 'ID number' from course-modules table (arbitrary text set by user) - from
873 * course_modules table
874 * @var string
876 private $idnumber;
879 * Time that this course-module was added (unix time) - from course_modules table
880 * @var int
882 private $added;
885 * This variable is not used and is included here only so it can be documented.
886 * Once the database entry is removed from course_modules, it should be deleted
887 * here too.
888 * @var int
889 * @deprecated Do not use this variable
891 private $score;
894 * Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
895 * course_modules table
896 * @var int
898 private $visible;
901 * Visible on course page setting - from course_modules table
902 * @var int
904 private $visibleoncoursepage;
907 * Old visible setting (if the entire section is hidden, the previous value for
908 * visible is stored in this field) - from course_modules table
909 * @var int
911 private $visibleold;
914 * Group mode (one of the constants NONE, SEPARATEGROUPS, or VISIBLEGROUPS) - from
915 * course_modules table
916 * @var int
918 private $groupmode;
921 * Grouping ID (0 = all groupings)
922 * @var int
924 private $groupingid;
927 * Indent level on course page (0 = no indent) - from course_modules table
928 * @var int
930 private $indent;
933 * Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
934 * course_modules table
935 * @var int
937 private $completion;
940 * Set to the item number (usually 0) if completion depends on a particular
941 * grade of this activity, or null if completion does not depend on a grade - from
942 * course_modules table
943 * @var mixed
945 private $completiongradeitemnumber;
948 * 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
949 * @var int
951 private $completionview;
954 * Set to a unix time if completion of this activity is expected at a
955 * particular time, 0 if no time set - from course_modules table
956 * @var int
958 private $completionexpected;
961 * Availability information as JSON string or null if none - from course_modules table
962 * @var string
964 private $availability;
967 * Controls whether the description of the activity displays on the course main page (in
968 * addition to anywhere it might display within the activity itself). 0 = do not show
969 * on main page, 1 = show on main page.
970 * @var int
972 private $showdescription;
975 * Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
976 * course page - from cached data in modinfo field
977 * @deprecated This is crazy, don't use it. Replaced by ->extraclasses and ->onclick
978 * @var string
980 private $extra;
983 * Name of icon to use - from cached data in modinfo field
984 * @var string
986 private $icon;
989 * Component that contains icon - from cached data in modinfo field
990 * @var string
992 private $iconcomponent;
995 * Name of module e.g. 'forum' (this is the same name as the module's main database
996 * table) - from cached data in modinfo field
997 * @var string
999 private $modname;
1002 * ID of module - from course_modules table
1003 * @var int
1005 private $module;
1008 * Name of module instance for display on page e.g. 'General discussion forum' - from cached
1009 * data in modinfo field
1010 * @var string
1012 private $name;
1015 * Section number that this course-module is in (section 0 = above the calendar, section 1
1016 * = week/topic 1, etc) - from cached data in modinfo field
1017 * @var int
1019 private $sectionnum;
1022 * Section id - from course_modules table
1023 * @var int
1025 private $section;
1028 * Availability conditions for this course-module based on the completion of other
1029 * course-modules (array from other course-module id to required completion state for that
1030 * module) - from cached data in modinfo field
1031 * @var array
1033 private $conditionscompletion;
1036 * Availability conditions for this course-module based on course grades (array from
1037 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
1038 * @var array
1040 private $conditionsgrade;
1043 * Availability conditions for this course-module based on user fields
1044 * @var array
1046 private $conditionsfield;
1049 * True if this course-module is available to students i.e. if all availability conditions
1050 * are met - obtained dynamically
1051 * @var bool
1053 private $available;
1056 * If course-module is not available to students, this string gives information about
1057 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
1058 * January 2010') for display on main page - obtained dynamically
1059 * @var string
1061 private $availableinfo;
1064 * True if this course-module is available to the CURRENT user (for example, if current user
1065 * has viewhiddenactivities capability, they can access the course-module even if it is not
1066 * visible or not available, so this would be true in that case)
1067 * @var bool
1069 private $uservisible;
1072 * True if this course-module is visible to the CURRENT user on the course page
1073 * @var bool
1075 private $uservisibleoncoursepage;
1078 * @var moodle_url
1080 private $url;
1083 * @var string
1085 private $content;
1088 * @var string
1090 private $extraclasses;
1093 * @var moodle_url full external url pointing to icon image for activity
1095 private $iconurl;
1098 * @var string
1100 private $onclick;
1103 * @var mixed
1105 private $customdata;
1108 * @var string
1110 private $afterlink;
1113 * @var string
1115 private $afterediticons;
1118 * @var bool representing the deletion state of the module. True if the mod is scheduled for deletion.
1120 private $deletioninprogress;
1123 * List of class read-only properties and their getter methods.
1124 * Used by magic functions __get(), __isset(), __empty()
1125 * @var array
1127 private static $standardproperties = array(
1128 'url' => 'get_url',
1129 'content' => 'get_content',
1130 'extraclasses' => 'get_extra_classes',
1131 'onclick' => 'get_on_click',
1132 'customdata' => 'get_custom_data',
1133 'afterlink' => 'get_after_link',
1134 'afterediticons' => 'get_after_edit_icons',
1135 'modfullname' => 'get_module_type_name',
1136 'modplural' => 'get_module_type_name_plural',
1137 'id' => false,
1138 'added' => false,
1139 'availability' => false,
1140 'available' => 'get_available',
1141 'availableinfo' => 'get_available_info',
1142 'completion' => false,
1143 'completionexpected' => false,
1144 'completiongradeitemnumber' => false,
1145 'completionview' => false,
1146 'conditionscompletion' => false,
1147 'conditionsfield' => false,
1148 'conditionsgrade' => false,
1149 'context' => 'get_context',
1150 'course' => 'get_course_id',
1151 'coursegroupmode' => 'get_course_groupmode',
1152 'coursegroupmodeforce' => 'get_course_groupmodeforce',
1153 'effectivegroupmode' => 'get_effective_groupmode',
1154 'extra' => false,
1155 'groupingid' => false,
1156 'groupmembersonly' => 'get_deprecated_group_members_only',
1157 'groupmode' => false,
1158 'icon' => false,
1159 'iconcomponent' => false,
1160 'idnumber' => false,
1161 'indent' => false,
1162 'instance' => false,
1163 'modname' => false,
1164 'module' => false,
1165 'name' => 'get_name',
1166 'score' => false,
1167 'section' => false,
1168 'sectionnum' => false,
1169 'showdescription' => false,
1170 'uservisible' => 'get_user_visible',
1171 'visible' => false,
1172 'visibleoncoursepage' => false,
1173 'visibleold' => false,
1174 'deletioninprogress' => false
1178 * List of methods with no arguments that were public prior to Moodle 2.6.
1180 * They can still be accessed publicly via magic __call() function with no warnings
1181 * but are not listed in the class methods list.
1182 * For the consistency of the code it is better to use corresponding properties.
1184 * These methods be deprecated completely in later versions.
1186 * @var array $standardmethods
1188 private static $standardmethods = array(
1189 // Following methods are not recommended to use because there have associated read-only properties.
1190 'get_url',
1191 'get_content',
1192 'get_extra_classes',
1193 'get_on_click',
1194 'get_custom_data',
1195 'get_after_link',
1196 'get_after_edit_icons',
1197 // Method obtain_dynamic_data() should not be called from outside of this class but it was public before Moodle 2.6.
1198 'obtain_dynamic_data',
1202 * Magic method to call functions that are now declared as private but were public in Moodle before 2.6.
1203 * These private methods can not be used anymore.
1205 * @param string $name
1206 * @param array $arguments
1207 * @return mixed
1208 * @throws coding_exception
1210 public function __call($name, $arguments) {
1211 if (in_array($name, self::$standardmethods)) {
1212 $message = "cm_info::$name() can not be used anymore.";
1213 if ($alternative = array_search($name, self::$standardproperties)) {
1214 $message .= " Please use the property cm_info->$alternative instead.";
1216 throw new coding_exception($message);
1218 throw new coding_exception("Method cm_info::{$name}() does not exist");
1222 * Magic method getter
1224 * @param string $name
1225 * @return mixed
1227 public function __get($name) {
1228 if (isset(self::$standardproperties[$name])) {
1229 if ($method = self::$standardproperties[$name]) {
1230 return $this->$method();
1231 } else {
1232 return $this->$name;
1234 } else {
1235 debugging('Invalid cm_info property accessed: '.$name);
1236 return null;
1241 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
1242 * and use {@link convert_to_array()}
1244 * @return ArrayIterator
1246 public function getIterator() {
1247 // Make sure dynamic properties are retrieved prior to view properties.
1248 $this->obtain_dynamic_data();
1249 $ret = array();
1251 // Do not iterate over deprecated properties.
1252 $props = self::$standardproperties;
1253 unset($props['groupmembersonly']);
1255 foreach ($props as $key => $unused) {
1256 $ret[$key] = $this->__get($key);
1258 return new ArrayIterator($ret);
1262 * Magic method for function isset()
1264 * @param string $name
1265 * @return bool
1267 public function __isset($name) {
1268 if (isset(self::$standardproperties[$name])) {
1269 $value = $this->__get($name);
1270 return isset($value);
1272 return false;
1276 * Magic method for function empty()
1278 * @param string $name
1279 * @return bool
1281 public function __empty($name) {
1282 if (isset(self::$standardproperties[$name])) {
1283 $value = $this->__get($name);
1284 return empty($value);
1286 return true;
1290 * Magic method setter
1292 * Will display the developer warning when trying to set/overwrite property.
1294 * @param string $name
1295 * @param mixed $value
1297 public function __set($name, $value) {
1298 debugging("It is not allowed to set the property cm_info::\${$name}", DEBUG_DEVELOPER);
1302 * @return bool True if this module has a 'view' page that should be linked to in navigation
1303 * etc (note: modules may still have a view.php file, but return false if this is not
1304 * intended to be linked to from 'normal' parts of the interface; this is what label does).
1306 public function has_view() {
1307 return !is_null($this->url);
1311 * @return moodle_url URL to link to for this module, or null if it doesn't have a view page
1313 private function get_url() {
1314 $this->obtain_dynamic_data();
1315 return $this->url;
1319 * Obtains content to display on main (view) page.
1320 * Note: Will collect view data, if not already obtained.
1321 * @return string Content to display on main page below link, or empty string if none
1323 private function get_content() {
1324 $this->obtain_view_data();
1325 return $this->content;
1329 * Returns the content to display on course/overview page, formatted and passed through filters
1331 * if $options['context'] is not specified, the module context is used
1333 * @param array|stdClass $options formatting options, see {@link format_text()}
1334 * @return string
1336 public function get_formatted_content($options = array()) {
1337 $this->obtain_view_data();
1338 if (empty($this->content)) {
1339 return '';
1341 // Improve filter performance by preloading filter setttings for all
1342 // activities on the course (this does nothing if called multiple
1343 // times)
1344 filter_preload_activities($this->get_modinfo());
1346 $options = (array)$options;
1347 if (!isset($options['context'])) {
1348 $options['context'] = $this->get_context();
1350 return format_text($this->content, FORMAT_HTML, $options);
1354 * Getter method for property $name, ensures that dynamic data is obtained.
1355 * @return string
1357 private function get_name() {
1358 $this->obtain_dynamic_data();
1359 return $this->name;
1363 * Returns the name to display on course/overview page, formatted and passed through filters
1365 * if $options['context'] is not specified, the module context is used
1367 * @param array|stdClass $options formatting options, see {@link format_string()}
1368 * @return string
1370 public function get_formatted_name($options = array()) {
1371 global $CFG;
1372 $options = (array)$options;
1373 if (!isset($options['context'])) {
1374 $options['context'] = $this->get_context();
1376 // Improve filter performance by preloading filter setttings for all
1377 // activities on the course (this does nothing if called multiple
1378 // times).
1379 if (!empty($CFG->filterall)) {
1380 filter_preload_activities($this->get_modinfo());
1382 return format_string($this->get_name(), true, $options);
1386 * Note: Will collect view data, if not already obtained.
1387 * @return string Extra CSS classes to add to html output for this activity on main page
1389 private function get_extra_classes() {
1390 $this->obtain_view_data();
1391 return $this->extraclasses;
1395 * @return string Content of HTML on-click attribute. This string will be used literally
1396 * as a string so should be pre-escaped.
1398 private function get_on_click() {
1399 // Does not need view data; may be used by navigation
1400 $this->obtain_dynamic_data();
1401 return $this->onclick;
1404 * @return mixed Optional custom data stored in modinfo cache for this activity, or null if none
1406 private function get_custom_data() {
1407 return $this->customdata;
1411 * Note: Will collect view data, if not already obtained.
1412 * @return string Extra HTML code to display after link
1414 private function get_after_link() {
1415 $this->obtain_view_data();
1416 return $this->afterlink;
1420 * Note: Will collect view data, if not already obtained.
1421 * @return string Extra HTML code to display after editing icons (e.g. more icons)
1423 private function get_after_edit_icons() {
1424 $this->obtain_view_data();
1425 return $this->afterediticons;
1429 * @param moodle_core_renderer $output Output render to use, or null for default (global)
1430 * @return moodle_url Icon URL for a suitable icon to put beside this cm
1432 public function get_icon_url($output = null) {
1433 global $OUTPUT;
1434 $this->obtain_dynamic_data();
1435 if (!$output) {
1436 $output = $OUTPUT;
1438 // Support modules setting their own, external, icon image
1439 if (!empty($this->iconurl)) {
1440 $icon = $this->iconurl;
1442 // Fallback to normal local icon + component procesing
1443 } else if (!empty($this->icon)) {
1444 if (substr($this->icon, 0, 4) === 'mod/') {
1445 list($modname, $iconname) = explode('/', substr($this->icon, 4), 2);
1446 $icon = $output->image_url($iconname, $modname);
1447 } else {
1448 if (!empty($this->iconcomponent)) {
1449 // Icon has specified component
1450 $icon = $output->image_url($this->icon, $this->iconcomponent);
1451 } else {
1452 // Icon does not have specified component, use default
1453 $icon = $output->image_url($this->icon);
1456 } else {
1457 $icon = $output->image_url('icon', $this->modname);
1459 return $icon;
1463 * @param string $textclasses additionnal classes for grouping label
1464 * @return string An empty string or HTML grouping label span tag
1466 public function get_grouping_label($textclasses = '') {
1467 $groupinglabel = '';
1468 if ($this->effectivegroupmode != NOGROUPS && !empty($this->groupingid) &&
1469 has_capability('moodle/course:managegroups', context_course::instance($this->course))) {
1470 $groupings = groups_get_all_groupings($this->course);
1471 $groupinglabel = html_writer::tag('span', '('.format_string($groupings[$this->groupingid]->name).')',
1472 array('class' => 'groupinglabel '.$textclasses));
1474 return $groupinglabel;
1478 * Returns a localised human-readable name of the module type
1480 * @param bool $plural return plural form
1481 * @return string
1483 public function get_module_type_name($plural = false) {
1484 $modnames = get_module_types_names($plural);
1485 if (isset($modnames[$this->modname])) {
1486 return $modnames[$this->modname];
1487 } else {
1488 return null;
1493 * Returns a localised human-readable name of the module type in plural form - calculated on request
1495 * @return string
1497 private function get_module_type_name_plural() {
1498 return $this->get_module_type_name(true);
1502 * @return course_modinfo Modinfo object that this came from
1504 public function get_modinfo() {
1505 return $this->modinfo;
1509 * Returns the section this module belongs to
1511 * @return section_info
1513 public function get_section_info() {
1514 return $this->modinfo->get_section_info($this->sectionnum);
1518 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
1520 * It may not contain all fields from DB table {course} but always has at least the following:
1521 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
1523 * If the course object lacks the field you need you can use the global
1524 * function {@link get_course()} that will save extra query if you access
1525 * current course or frontpage course.
1527 * @return stdClass
1529 public function get_course() {
1530 return $this->modinfo->get_course();
1534 * Returns course id for which the modinfo was generated.
1536 * @return int
1538 private function get_course_id() {
1539 return $this->modinfo->get_course_id();
1543 * Returns group mode used for the course containing the module
1545 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1547 private function get_course_groupmode() {
1548 return $this->modinfo->get_course()->groupmode;
1552 * Returns whether group mode is forced for the course containing the module
1554 * @return bool
1556 private function get_course_groupmodeforce() {
1557 return $this->modinfo->get_course()->groupmodeforce;
1561 * Returns effective groupmode of the module that may be overwritten by forced course groupmode.
1563 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1565 private function get_effective_groupmode() {
1566 $groupmode = $this->groupmode;
1567 if ($this->modinfo->get_course()->groupmodeforce) {
1568 $groupmode = $this->modinfo->get_course()->groupmode;
1569 if ($groupmode != NOGROUPS && !plugin_supports('mod', $this->modname, FEATURE_GROUPS, 0)) {
1570 $groupmode = NOGROUPS;
1573 return $groupmode;
1577 * @return context_module Current module context
1579 private function get_context() {
1580 return context_module::instance($this->id);
1584 * Returns itself in the form of stdClass.
1586 * The object includes all fields that table course_modules has and additionally
1587 * fields 'name', 'modname', 'sectionnum' (if requested).
1589 * This can be used as a faster alternative to {@link get_coursemodule_from_id()}
1591 * @param bool $additionalfields include additional fields 'name', 'modname', 'sectionnum'
1592 * @return stdClass
1594 public function get_course_module_record($additionalfields = false) {
1595 $cmrecord = new stdClass();
1597 // Standard fields from table course_modules.
1598 static $cmfields = array('id', 'course', 'module', 'instance', 'section', 'idnumber', 'added',
1599 'score', 'indent', 'visible', 'visibleoncoursepage', 'visibleold', 'groupmode', 'groupingid',
1600 'completion', 'completiongradeitemnumber', 'completionview', 'completionexpected',
1601 'showdescription', 'availability', 'deletioninprogress');
1602 foreach ($cmfields as $key) {
1603 $cmrecord->$key = $this->$key;
1606 // Additional fields that function get_coursemodule_from_id() adds.
1607 if ($additionalfields) {
1608 $cmrecord->name = $this->name;
1609 $cmrecord->modname = $this->modname;
1610 $cmrecord->sectionnum = $this->sectionnum;
1613 return $cmrecord;
1616 // Set functions
1617 ////////////////
1620 * Sets content to display on course view page below link (if present).
1621 * @param string $content New content as HTML string (empty string if none)
1622 * @return void
1624 public function set_content($content) {
1625 $this->content = $content;
1629 * Sets extra classes to include in CSS.
1630 * @param string $extraclasses Extra classes (empty string if none)
1631 * @return void
1633 public function set_extra_classes($extraclasses) {
1634 $this->extraclasses = $extraclasses;
1638 * Sets the external full url that points to the icon being used
1639 * by the activity. Useful for external-tool modules (lti...)
1640 * If set, takes precedence over $icon and $iconcomponent
1642 * @param moodle_url $iconurl full external url pointing to icon image for activity
1643 * @return void
1645 public function set_icon_url(moodle_url $iconurl) {
1646 $this->iconurl = $iconurl;
1650 * Sets value of on-click attribute for JavaScript.
1651 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1652 * @param string $onclick New onclick attribute which should be HTML-escaped
1653 * (empty string if none)
1654 * @return void
1656 public function set_on_click($onclick) {
1657 $this->check_not_view_only();
1658 $this->onclick = $onclick;
1662 * Sets HTML that displays after link on course view page.
1663 * @param string $afterlink HTML string (empty string if none)
1664 * @return void
1666 public function set_after_link($afterlink) {
1667 $this->afterlink = $afterlink;
1671 * Sets HTML that displays after edit icons on course view page.
1672 * @param string $afterediticons HTML string (empty string if none)
1673 * @return void
1675 public function set_after_edit_icons($afterediticons) {
1676 $this->afterediticons = $afterediticons;
1680 * Changes the name (text of link) for this module instance.
1681 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1682 * @param string $name Name of activity / link text
1683 * @return void
1685 public function set_name($name) {
1686 if ($this->state < self::STATE_BUILDING_DYNAMIC) {
1687 $this->update_user_visible();
1689 $this->name = $name;
1693 * Turns off the view link for this module instance.
1694 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1695 * @return void
1697 public function set_no_view_link() {
1698 $this->check_not_view_only();
1699 $this->url = null;
1703 * Sets the 'uservisible' flag. This can be used (by setting false) to prevent access and
1704 * display of this module link for the current user.
1705 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1706 * @param bool $uservisible
1707 * @return void
1709 public function set_user_visible($uservisible) {
1710 $this->check_not_view_only();
1711 $this->uservisible = $uservisible;
1715 * Sets the 'available' flag and related details. This flag is normally used to make
1716 * course modules unavailable until a certain date or condition is met. (When a course
1717 * module is unavailable, it is still visible to users who have viewhiddenactivities
1718 * permission.)
1720 * When this is function is called, user-visible status is recalculated automatically.
1722 * The $showavailability flag does not really do anything any more, but is retained
1723 * for backward compatibility. Setting this to false will cause $availableinfo to
1724 * be ignored.
1726 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1727 * @param bool $available False if this item is not 'available'
1728 * @param int $showavailability 0 = do not show this item at all if it's not available,
1729 * 1 = show this item greyed out with the following message
1730 * @param string $availableinfo Information about why this is not available, or
1731 * empty string if not displaying
1732 * @return void
1734 public function set_available($available, $showavailability=0, $availableinfo='') {
1735 $this->check_not_view_only();
1736 $this->available = $available;
1737 if (!$showavailability) {
1738 $availableinfo = '';
1740 $this->availableinfo = $availableinfo;
1741 $this->update_user_visible();
1745 * Some set functions can only be called from _cm_info_dynamic and not _cm_info_view.
1746 * This is because they may affect parts of this object which are used on pages other
1747 * than the view page (e.g. in the navigation block, or when checking access on
1748 * module pages).
1749 * @return void
1751 private function check_not_view_only() {
1752 if ($this->state >= self::STATE_DYNAMIC) {
1753 throw new coding_exception('Cannot set this data from _cm_info_view because it may ' .
1754 'affect other pages as well as view');
1759 * Constructor should not be called directly; use {@link get_fast_modinfo()}
1761 * @param course_modinfo $modinfo Parent object
1762 * @param stdClass $notused1 Argument not used
1763 * @param stdClass $mod Module object from the modinfo field of course table
1764 * @param stdClass $notused2 Argument not used
1766 public function __construct(course_modinfo $modinfo, $notused1, $mod, $notused2) {
1767 $this->modinfo = $modinfo;
1769 $this->id = $mod->cm;
1770 $this->instance = $mod->id;
1771 $this->modname = $mod->mod;
1772 $this->idnumber = isset($mod->idnumber) ? $mod->idnumber : '';
1773 $this->name = $mod->name;
1774 $this->visible = $mod->visible;
1775 $this->visibleoncoursepage = $mod->visibleoncoursepage;
1776 $this->sectionnum = $mod->section; // Note weirdness with name here
1777 $this->groupmode = isset($mod->groupmode) ? $mod->groupmode : 0;
1778 $this->groupingid = isset($mod->groupingid) ? $mod->groupingid : 0;
1779 $this->indent = isset($mod->indent) ? $mod->indent : 0;
1780 $this->extra = isset($mod->extra) ? $mod->extra : '';
1781 $this->extraclasses = isset($mod->extraclasses) ? $mod->extraclasses : '';
1782 // iconurl may be stored as either string or instance of moodle_url.
1783 $this->iconurl = isset($mod->iconurl) ? new moodle_url($mod->iconurl) : '';
1784 $this->onclick = isset($mod->onclick) ? $mod->onclick : '';
1785 $this->content = isset($mod->content) ? $mod->content : '';
1786 $this->icon = isset($mod->icon) ? $mod->icon : '';
1787 $this->iconcomponent = isset($mod->iconcomponent) ? $mod->iconcomponent : '';
1788 $this->customdata = isset($mod->customdata) ? $mod->customdata : '';
1789 $this->showdescription = isset($mod->showdescription) ? $mod->showdescription : 0;
1790 $this->state = self::STATE_BASIC;
1792 $this->section = isset($mod->sectionid) ? $mod->sectionid : 0;
1793 $this->module = isset($mod->module) ? $mod->module : 0;
1794 $this->added = isset($mod->added) ? $mod->added : 0;
1795 $this->score = isset($mod->score) ? $mod->score : 0;
1796 $this->visibleold = isset($mod->visibleold) ? $mod->visibleold : 0;
1797 $this->deletioninprogress = isset($mod->deletioninprogress) ? $mod->deletioninprogress : 0;
1799 // Note: it saves effort and database space to always include the
1800 // availability and completion fields, even if availability or completion
1801 // are actually disabled
1802 $this->completion = isset($mod->completion) ? $mod->completion : 0;
1803 $this->completiongradeitemnumber = isset($mod->completiongradeitemnumber)
1804 ? $mod->completiongradeitemnumber : null;
1805 $this->completionview = isset($mod->completionview)
1806 ? $mod->completionview : 0;
1807 $this->completionexpected = isset($mod->completionexpected)
1808 ? $mod->completionexpected : 0;
1809 $this->availability = isset($mod->availability) ? $mod->availability : null;
1810 $this->conditionscompletion = isset($mod->conditionscompletion)
1811 ? $mod->conditionscompletion : array();
1812 $this->conditionsgrade = isset($mod->conditionsgrade)
1813 ? $mod->conditionsgrade : array();
1814 $this->conditionsfield = isset($mod->conditionsfield)
1815 ? $mod->conditionsfield : array();
1817 static $modviews = array();
1818 if (!isset($modviews[$this->modname])) {
1819 $modviews[$this->modname] = !plugin_supports('mod', $this->modname,
1820 FEATURE_NO_VIEW_LINK);
1822 $this->url = $modviews[$this->modname]
1823 ? new moodle_url('/mod/' . $this->modname . '/view.php', array('id'=>$this->id))
1824 : null;
1828 * Creates a cm_info object from a database record (also accepts cm_info
1829 * in which case it is just returned unchanged).
1831 * @param stdClass|cm_info|null|bool $cm Stdclass or cm_info (or null or false)
1832 * @param int $userid Optional userid (default to current)
1833 * @return cm_info|null Object as cm_info, or null if input was null/false
1835 public static function create($cm, $userid = 0) {
1836 // Null, false, etc. gets passed through as null.
1837 if (!$cm) {
1838 return null;
1840 // If it is already a cm_info object, just return it.
1841 if ($cm instanceof cm_info) {
1842 return $cm;
1844 // Otherwise load modinfo.
1845 if (empty($cm->id) || empty($cm->course)) {
1846 throw new coding_exception('$cm must contain ->id and ->course');
1848 $modinfo = get_fast_modinfo($cm->course, $userid);
1849 return $modinfo->get_cm($cm->id);
1853 * If dynamic data for this course-module is not yet available, gets it.
1855 * This function is automatically called when requesting any course_modinfo property
1856 * that can be modified by modules (have a set_xxx method).
1858 * Dynamic data is data which does not come directly from the cache but is calculated at
1859 * runtime based on the current user. Primarily this concerns whether the user can access
1860 * the module or not.
1862 * As part of this function, the module's _cm_info_dynamic function from its lib.php will
1863 * be called (if it exists).
1864 * @return void
1866 private function obtain_dynamic_data() {
1867 global $CFG;
1868 $userid = $this->modinfo->get_user_id();
1869 if ($this->state >= self::STATE_BUILDING_DYNAMIC || $userid == -1) {
1870 return;
1872 $this->state = self::STATE_BUILDING_DYNAMIC;
1874 if (!empty($CFG->enableavailability)) {
1875 // Get availability information.
1876 $ci = new \core_availability\info_module($this);
1878 // Note that the modinfo currently available only includes minimal details (basic data)
1879 // but we know that this function does not need anything more than basic data.
1880 $this->available = $ci->is_available($this->availableinfo, true,
1881 $userid, $this->modinfo);
1882 } else {
1883 $this->available = true;
1886 // Check parent section.
1887 if ($this->available) {
1888 $parentsection = $this->modinfo->get_section_info($this->sectionnum);
1889 if (!$parentsection->available) {
1890 // Do not store info from section here, as that is already
1891 // presented from the section (if appropriate) - just change
1892 // the flag
1893 $this->available = false;
1897 // Update visible state for current user.
1898 $this->update_user_visible();
1900 // Let module make dynamic changes at this point
1901 $this->call_mod_function('cm_info_dynamic');
1902 $this->state = self::STATE_DYNAMIC;
1906 * Getter method for property $uservisible, ensures that dynamic data is retrieved.
1907 * @return bool
1909 private function get_user_visible() {
1910 $this->obtain_dynamic_data();
1911 return $this->uservisible;
1915 * Returns whether this module is visible to the current user on course page
1917 * Activity may be visible on the course page but not available, for example
1918 * when it is hidden conditionally but the condition information is displayed.
1920 * @return bool
1922 public function is_visible_on_course_page() {
1923 $this->obtain_dynamic_data();
1924 return $this->uservisibleoncoursepage;
1928 * Whether this module is available but hidden from course page
1930 * "Stealth" modules are the ones that are not shown on course page but available by following url.
1931 * They are normally also displayed in grade reports and other reports.
1932 * Module will be stealth either if visibleoncoursepage=0 or it is a visible module inside the hidden
1933 * section.
1935 * @return bool
1937 public function is_stealth() {
1938 return !$this->visibleoncoursepage ||
1939 ($this->visible && ($section = $this->get_section_info()) && !$section->visible);
1943 * Getter method for property $available, ensures that dynamic data is retrieved
1944 * @return bool
1946 private function get_available() {
1947 $this->obtain_dynamic_data();
1948 return $this->available;
1952 * This method can not be used anymore.
1954 * @see \core_availability\info_module::filter_user_list()
1955 * @deprecated Since Moodle 2.8
1957 private function get_deprecated_group_members_only() {
1958 throw new coding_exception('$cm->groupmembersonly can not be used anymore. ' .
1959 'If used to restrict a list of enrolled users to only those who can ' .
1960 'access the module, consider \core_availability\info_module::filter_user_list.');
1964 * Getter method for property $availableinfo, ensures that dynamic data is retrieved
1966 * @return string Available info (HTML)
1968 private function get_available_info() {
1969 $this->obtain_dynamic_data();
1970 return $this->availableinfo;
1974 * Works out whether activity is available to the current user
1976 * If the activity is unavailable, additional checks are required to determine if its hidden or greyed out
1978 * @return void
1980 private function update_user_visible() {
1981 $userid = $this->modinfo->get_user_id();
1982 if ($userid == -1) {
1983 return null;
1985 $this->uservisible = true;
1987 // If the module is being deleted, set the uservisible state to false and return.
1988 if ($this->deletioninprogress) {
1989 $this->uservisible = false;
1990 return null;
1993 // If the user cannot access the activity set the uservisible flag to false.
1994 // Additional checks are required to determine whether the activity is entirely hidden or just greyed out.
1995 if ((!$this->visible && !has_capability('moodle/course:viewhiddenactivities', $this->get_context(), $userid)) ||
1996 (!$this->get_available() &&
1997 !has_capability('moodle/course:ignoreavailabilityrestrictions', $this->get_context(), $userid))) {
1999 $this->uservisible = false;
2002 // Check group membership.
2003 if ($this->is_user_access_restricted_by_capability()) {
2005 $this->uservisible = false;
2006 // Ensure activity is completely hidden from the user.
2007 $this->availableinfo = '';
2010 $this->uservisibleoncoursepage = $this->uservisible &&
2011 ($this->visibleoncoursepage ||
2012 has_capability('moodle/course:manageactivities', $this->get_context(), $userid) ||
2013 has_capability('moodle/course:activityvisibility', $this->get_context(), $userid));
2014 // Activity that is not available, not hidden from course page and has availability
2015 // info is actually visible on the course page (with availability info and without a link).
2016 if (!$this->uservisible && $this->visibleoncoursepage && $this->availableinfo) {
2017 $this->uservisibleoncoursepage = true;
2022 * This method has been deprecated and should not be used.
2024 * @see $uservisible
2025 * @deprecated Since Moodle 2.8
2027 public function is_user_access_restricted_by_group() {
2028 throw new coding_exception('cm_info::is_user_access_restricted_by_group() can not be used any more.' .
2029 ' Use $cm->uservisible to decide whether the current user can access an activity.');
2033 * Checks whether mod/...:view capability restricts the current user's access.
2035 * @return bool True if the user access is restricted.
2037 public function is_user_access_restricted_by_capability() {
2038 $userid = $this->modinfo->get_user_id();
2039 if ($userid == -1) {
2040 return null;
2042 $capability = 'mod/' . $this->modname . ':view';
2043 $capabilityinfo = get_capability_info($capability);
2044 if (!$capabilityinfo) {
2045 // Capability does not exist, no one is prevented from seeing the activity.
2046 return false;
2049 // You are blocked if you don't have the capability.
2050 return !has_capability($capability, $this->get_context(), $userid);
2054 * Checks whether the module's conditional access settings mean that the
2055 * user cannot see the activity at all
2057 * @deprecated since 2.7 MDL-44070
2059 public function is_user_access_restricted_by_conditional_access() {
2060 throw new coding_exception('cm_info::is_user_access_restricted_by_conditional_access() ' .
2061 'can not be used any more; this function is not needed (use $cm->uservisible ' .
2062 'and $cm->availableinfo to decide whether it should be available ' .
2063 'or appear)');
2067 * Calls a module function (if exists), passing in one parameter: this object.
2068 * @param string $type Name of function e.g. if this is 'grooblezorb' and the modname is
2069 * 'forum' then it will try to call 'mod_forum_grooblezorb' or 'forum_grooblezorb'
2070 * @return void
2072 private function call_mod_function($type) {
2073 global $CFG;
2074 $libfile = $CFG->dirroot . '/mod/' . $this->modname . '/lib.php';
2075 if (file_exists($libfile)) {
2076 include_once($libfile);
2077 $function = 'mod_' . $this->modname . '_' . $type;
2078 if (function_exists($function)) {
2079 $function($this);
2080 } else {
2081 $function = $this->modname . '_' . $type;
2082 if (function_exists($function)) {
2083 $function($this);
2090 * If view data for this course-module is not yet available, obtains it.
2092 * This function is automatically called if any of the functions (marked) which require
2093 * view data are called.
2095 * View data is data which is needed only for displaying the course main page (& any similar
2096 * functionality on other pages) but is not needed in general. Obtaining view data may have
2097 * a performance cost.
2099 * As part of this function, the module's _cm_info_view function from its lib.php will
2100 * be called (if it exists).
2101 * @return void
2103 private function obtain_view_data() {
2104 if ($this->state >= self::STATE_BUILDING_VIEW || $this->modinfo->get_user_id() == -1) {
2105 return;
2107 $this->obtain_dynamic_data();
2108 $this->state = self::STATE_BUILDING_VIEW;
2110 // Let module make changes at this point
2111 $this->call_mod_function('cm_info_view');
2112 $this->state = self::STATE_VIEW;
2118 * Returns reference to full info about modules in course (including visibility).
2119 * Cached and as fast as possible (0 or 1 db query).
2121 * use get_fast_modinfo($courseid, 0, true) to reset the static cache for particular course
2122 * use get_fast_modinfo(0, 0, true) to reset the static cache for all courses
2124 * use rebuild_course_cache($courseid, true) to reset the application AND static cache
2125 * for particular course when it's contents has changed
2127 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
2128 * and recommended to have field 'cacherev') or just a course id. Just course id
2129 * is enough when calling get_fast_modinfo() for current course or site or when
2130 * calling for any other course for the second time.
2131 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
2132 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
2133 * @param bool $resetonly whether we want to get modinfo or just reset the cache
2134 * @return course_modinfo|null Module information for course, or null if resetting
2135 * @throws moodle_exception when course is not found (nothing is thrown if resetting)
2137 function get_fast_modinfo($courseorid, $userid = 0, $resetonly = false) {
2138 // compartibility with syntax prior to 2.4:
2139 if ($courseorid === 'reset') {
2140 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);
2141 $courseorid = 0;
2142 $resetonly = true;
2145 // Function get_fast_modinfo() can never be called during upgrade unless it is used for clearing cache only.
2146 if (!$resetonly) {
2147 upgrade_ensure_not_running();
2150 // Function is called with $reset = true
2151 if ($resetonly) {
2152 course_modinfo::clear_instance_cache($courseorid);
2153 return null;
2156 // Function is called with $reset = false, retrieve modinfo
2157 return course_modinfo::instance($courseorid, $userid);
2161 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2162 * a cmid. If module name is also provided, it will ensure the cm is of that type.
2164 * Usage:
2165 * list($course, $cm) = get_course_and_cm_from_cmid($cmid, 'forum');
2167 * Using this method has a performance advantage because it works by loading
2168 * modinfo for the course - which will then be cached and it is needed later
2169 * in most requests. It also guarantees that the $cm object is a cm_info and
2170 * not a stdclass.
2172 * The $course object can be supplied if already known and will speed
2173 * up this function - although it is more efficient to use this function to
2174 * get the course if you are starting from a cmid.
2176 * To avoid security problems and obscure bugs, you should always specify
2177 * $modulename if the cmid value came from user input.
2179 * By default this obtains information (for example, whether user can access
2180 * the activity) for current user, but you can specify a userid if required.
2182 * @param stdClass|int $cmorid Id of course-module, or database object
2183 * @param string $modulename Optional modulename (improves security)
2184 * @param stdClass|int $courseorid Optional course object if already loaded
2185 * @param int $userid Optional userid (default = current)
2186 * @return array Array with 2 elements $course and $cm
2187 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2189 function get_course_and_cm_from_cmid($cmorid, $modulename = '', $courseorid = 0, $userid = 0) {
2190 global $DB;
2191 if (is_object($cmorid)) {
2192 $cmid = $cmorid->id;
2193 if (isset($cmorid->course)) {
2194 $courseid = (int)$cmorid->course;
2195 } else {
2196 $courseid = 0;
2198 } else {
2199 $cmid = (int)$cmorid;
2200 $courseid = 0;
2203 // Validate module name if supplied.
2204 if ($modulename && !core_component::is_valid_plugin_name('mod', $modulename)) {
2205 throw new coding_exception('Invalid modulename parameter');
2208 // Get course from last parameter if supplied.
2209 $course = null;
2210 if (is_object($courseorid)) {
2211 $course = $courseorid;
2212 } else if ($courseorid) {
2213 $courseid = (int)$courseorid;
2216 if (!$course) {
2217 if ($courseid) {
2218 // If course ID is known, get it using normal function.
2219 $course = get_course($courseid);
2220 } else {
2221 // Get course record in a single query based on cmid.
2222 $course = $DB->get_record_sql("
2223 SELECT c.*
2224 FROM {course_modules} cm
2225 JOIN {course} c ON c.id = cm.course
2226 WHERE cm.id = ?", array($cmid), MUST_EXIST);
2230 // Get cm from get_fast_modinfo.
2231 $modinfo = get_fast_modinfo($course, $userid);
2232 $cm = $modinfo->get_cm($cmid);
2233 if ($modulename && $cm->modname !== $modulename) {
2234 throw new moodle_exception('invalidcoursemodule', 'error');
2236 return array($course, $cm);
2240 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2241 * an instance id or record and module name.
2243 * Usage:
2244 * list($course, $cm) = get_course_and_cm_from_instance($forum, 'forum');
2246 * Using this method has a performance advantage because it works by loading
2247 * modinfo for the course - which will then be cached and it is needed later
2248 * in most requests. It also guarantees that the $cm object is a cm_info and
2249 * not a stdclass.
2251 * The $course object can be supplied if already known and will speed
2252 * up this function - although it is more efficient to use this function to
2253 * get the course if you are starting from an instance id.
2255 * By default this obtains information (for example, whether user can access
2256 * the activity) for current user, but you can specify a userid if required.
2258 * @param stdclass|int $instanceorid Id of module instance, or database object
2259 * @param string $modulename Modulename (required)
2260 * @param stdClass|int $courseorid Optional course object if already loaded
2261 * @param int $userid Optional userid (default = current)
2262 * @return array Array with 2 elements $course and $cm
2263 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2265 function get_course_and_cm_from_instance($instanceorid, $modulename, $courseorid = 0, $userid = 0) {
2266 global $DB;
2268 // Get data from parameter.
2269 if (is_object($instanceorid)) {
2270 $instanceid = $instanceorid->id;
2271 if (isset($instanceorid->course)) {
2272 $courseid = (int)$instanceorid->course;
2273 } else {
2274 $courseid = 0;
2276 } else {
2277 $instanceid = (int)$instanceorid;
2278 $courseid = 0;
2281 // Get course from last parameter if supplied.
2282 $course = null;
2283 if (is_object($courseorid)) {
2284 $course = $courseorid;
2285 } else if ($courseorid) {
2286 $courseid = (int)$courseorid;
2289 // Validate module name if supplied.
2290 if (!core_component::is_valid_plugin_name('mod', $modulename)) {
2291 throw new coding_exception('Invalid modulename parameter');
2294 if (!$course) {
2295 if ($courseid) {
2296 // If course ID is known, get it using normal function.
2297 $course = get_course($courseid);
2298 } else {
2299 // Get course record in a single query based on instance id.
2300 $pagetable = '{' . $modulename . '}';
2301 $course = $DB->get_record_sql("
2302 SELECT c.*
2303 FROM $pagetable instance
2304 JOIN {course} c ON c.id = instance.course
2305 WHERE instance.id = ?", array($instanceid), MUST_EXIST);
2309 // Get cm from get_fast_modinfo.
2310 $modinfo = get_fast_modinfo($course, $userid);
2311 $instances = $modinfo->get_instances_of($modulename);
2312 if (!array_key_exists($instanceid, $instances)) {
2313 throw new moodle_exception('invalidmoduleid', 'error', $instanceid);
2315 return array($course, $instances[$instanceid]);
2320 * Rebuilds or resets the cached list of course activities stored in MUC.
2322 * rebuild_course_cache() must NEVER be called from lib/db/upgrade.php.
2323 * At the same time course cache may ONLY be cleared using this function in
2324 * upgrade scripts of plugins.
2326 * During the bulk operations if it is necessary to reset cache of multiple
2327 * courses it is enough to call {@link increment_revision_number()} for the
2328 * table 'course' and field 'cacherev' specifying affected courses in select.
2330 * Cached course information is stored in MUC core/coursemodinfo and is
2331 * validated with the DB field {course}.cacherev
2333 * @global moodle_database $DB
2334 * @param int $courseid id of course to rebuild, empty means all
2335 * @param boolean $clearonly only clear the cache, gets rebuild automatically on the fly.
2336 * Recommended to set to true to avoid unnecessary multiple rebuilding.
2338 function rebuild_course_cache($courseid=0, $clearonly=false) {
2339 global $COURSE, $SITE, $DB, $CFG;
2341 // Function rebuild_course_cache() can not be called during upgrade unless it's clear only.
2342 if (!$clearonly && !upgrade_ensure_not_running(true)) {
2343 $clearonly = true;
2346 // Destroy navigation caches
2347 navigation_cache::destroy_volatile_caches();
2349 if (class_exists('format_base')) {
2350 // if file containing class is not loaded, there is no cache there anyway
2351 format_base::reset_course_cache($courseid);
2354 $cachecoursemodinfo = cache::make('core', 'coursemodinfo');
2355 if (empty($courseid)) {
2356 // Clearing caches for all courses.
2357 increment_revision_number('course', 'cacherev', '');
2358 $cachecoursemodinfo->purge();
2359 course_modinfo::clear_instance_cache();
2360 // Update global values too.
2361 $sitecacherev = $DB->get_field('course', 'cacherev', array('id' => SITEID));
2362 $SITE->cachrev = $sitecacherev;
2363 if ($COURSE->id == SITEID) {
2364 $COURSE->cacherev = $sitecacherev;
2365 } else {
2366 $COURSE->cacherev = $DB->get_field('course', 'cacherev', array('id' => $COURSE->id));
2368 } else {
2369 // Clearing cache for one course, make sure it is deleted from user request cache as well.
2370 increment_revision_number('course', 'cacherev', 'id = :id', array('id' => $courseid));
2371 $cachecoursemodinfo->delete($courseid);
2372 course_modinfo::clear_instance_cache($courseid);
2373 // Update global values too.
2374 if ($courseid == $COURSE->id || $courseid == $SITE->id) {
2375 $cacherev = $DB->get_field('course', 'cacherev', array('id' => $courseid));
2376 if ($courseid == $COURSE->id) {
2377 $COURSE->cacherev = $cacherev;
2379 if ($courseid == $SITE->id) {
2380 $SITE->cachrev = $cacherev;
2385 if ($clearonly) {
2386 return;
2389 if ($courseid) {
2390 $select = array('id'=>$courseid);
2391 } else {
2392 $select = array();
2393 core_php_time_limit::raise(); // this could take a while! MDL-10954
2396 $rs = $DB->get_recordset("course", $select,'','id,'.join(',', course_modinfo::$cachedfields));
2397 // Rebuild cache for each course.
2398 foreach ($rs as $course) {
2399 course_modinfo::build_course_cache($course);
2401 $rs->close();
2406 * Class that is the return value for the _get_coursemodule_info module API function.
2408 * Note: For backward compatibility, you can also return a stdclass object from that function.
2409 * The difference is that the stdclass object may contain an 'extra' field (deprecated,
2410 * use extraclasses and onclick instead). The stdclass object may not contain
2411 * the new fields defined here (content, extraclasses, customdata).
2413 class cached_cm_info {
2415 * Name (text of link) for this activity; Leave unset to accept default name
2416 * @var string
2418 public $name;
2421 * Name of icon for this activity. Normally, this should be used together with $iconcomponent
2422 * to define the icon, as per image_url function.
2423 * For backward compatibility, if this value is of the form 'mod/forum/icon' then an icon
2424 * within that module will be used.
2425 * @see cm_info::get_icon_url()
2426 * @see renderer_base::image_url()
2427 * @var string
2429 public $icon;
2432 * Component for icon for this activity, as per image_url; leave blank to use default 'moodle'
2433 * component
2434 * @see renderer_base::image_url()
2435 * @var string
2437 public $iconcomponent;
2440 * HTML content to be displayed on the main page below the link (if any) for this course-module
2441 * @var string
2443 public $content;
2446 * Custom data to be stored in modinfo for this activity; useful if there are cases when
2447 * internal information for this activity type needs to be accessible from elsewhere on the
2448 * course without making database queries. May be of any type but should be short.
2449 * @var mixed
2451 public $customdata;
2454 * Extra CSS class or classes to be added when this activity is displayed on the main page;
2455 * space-separated string
2456 * @var string
2458 public $extraclasses;
2461 * External URL image to be used by activity as icon, useful for some external-tool modules
2462 * like lti. If set, takes precedence over $icon and $iconcomponent
2463 * @var $moodle_url
2465 public $iconurl;
2468 * Content of onclick JavaScript; escaped HTML to be inserted as attribute value
2469 * @var string
2471 public $onclick;
2476 * Data about a single section on a course. This contains the fields from the
2477 * course_sections table, plus additional data when required.
2479 * @property-read int $id Section ID - from course_sections table
2480 * @property-read int $course Course ID - from course_sections table
2481 * @property-read int $section Section number - from course_sections table
2482 * @property-read string $name Section name if specified - from course_sections table
2483 * @property-read int $visible Section visibility (1 = visible) - from course_sections table
2484 * @property-read string $summary Section summary text if specified - from course_sections table
2485 * @property-read int $summaryformat Section summary text format (FORMAT_xx constant) - from course_sections table
2486 * @property-read string $availability Availability information as JSON string -
2487 * from course_sections table
2488 * @property-read array $conditionscompletion Availability conditions for this section based on the completion of
2489 * course-modules (array from course-module id to required completion state
2490 * for that module) - from cached data in sectioncache field
2491 * @property-read array $conditionsgrade Availability conditions for this section based on course grades (array from
2492 * grade item id to object with ->min, ->max fields) - from cached data in
2493 * sectioncache field
2494 * @property-read array $conditionsfield Availability conditions for this section based on user fields
2495 * @property-read bool $available True if this section is available to the given user i.e. if all availability conditions
2496 * are met - obtained dynamically
2497 * @property-read string $availableinfo If section is not available to some users, this string gives information about
2498 * availability which can be displayed to students and/or staff (e.g. 'Available from 3 January 2010')
2499 * for display on main page - obtained dynamically
2500 * @property-read bool $uservisible True if this section is available to the given user (for example, if current user
2501 * has viewhiddensections capability, they can access the section even if it is not
2502 * visible or not available, so this would be true in that case) - obtained dynamically
2503 * @property-read string $sequence Comma-separated list of all modules in the section. Note, this field may not exactly
2504 * match course_sections.sequence if later has references to non-existing modules or not modules of not available module types.
2505 * @property-read course_modinfo $modinfo
2507 class section_info implements IteratorAggregate {
2509 * Section ID - from course_sections table
2510 * @var int
2512 private $_id;
2515 * Section number - from course_sections table
2516 * @var int
2518 private $_section;
2521 * Section name if specified - from course_sections table
2522 * @var string
2524 private $_name;
2527 * Section visibility (1 = visible) - from course_sections table
2528 * @var int
2530 private $_visible;
2533 * Section summary text if specified - from course_sections table
2534 * @var string
2536 private $_summary;
2539 * Section summary text format (FORMAT_xx constant) - from course_sections table
2540 * @var int
2542 private $_summaryformat;
2545 * Availability information as JSON string - from course_sections table
2546 * @var string
2548 private $_availability;
2551 * Availability conditions for this section based on the completion of
2552 * course-modules (array from course-module id to required completion state
2553 * for that module) - from cached data in sectioncache field
2554 * @var array
2556 private $_conditionscompletion;
2559 * Availability conditions for this section based on course grades (array from
2560 * grade item id to object with ->min, ->max fields) - from cached data in
2561 * sectioncache field
2562 * @var array
2564 private $_conditionsgrade;
2567 * Availability conditions for this section based on user fields
2568 * @var array
2570 private $_conditionsfield;
2573 * True if this section is available to students i.e. if all availability conditions
2574 * are met - obtained dynamically on request, see function {@link section_info::get_available()}
2575 * @var bool|null
2577 private $_available;
2580 * If section is not available to some users, this string gives information about
2581 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
2582 * January 2010') for display on main page - obtained dynamically on request, see
2583 * function {@link section_info::get_availableinfo()}
2584 * @var string
2586 private $_availableinfo;
2589 * True if this section is available to the CURRENT user (for example, if current user
2590 * has viewhiddensections capability, they can access the section even if it is not
2591 * visible or not available, so this would be true in that case) - obtained dynamically
2592 * on request, see function {@link section_info::get_uservisible()}
2593 * @var bool|null
2595 private $_uservisible;
2598 * Default values for sectioncache fields; if a field has this value, it won't
2599 * be stored in the sectioncache cache, to save space. Checks are done by ===
2600 * which means values must all be strings.
2601 * @var array
2603 private static $sectioncachedefaults = array(
2604 'name' => null,
2605 'summary' => '',
2606 'summaryformat' => '1', // FORMAT_HTML, but must be a string
2607 'visible' => '1',
2608 'availability' => null
2612 * Stores format options that have been cached when building 'coursecache'
2613 * When the format option is requested we look first if it has been cached
2614 * @var array
2616 private $cachedformatoptions = array();
2619 * Stores the list of all possible section options defined in each used course format.
2620 * @var array
2622 static private $sectionformatoptions = array();
2625 * Stores the modinfo object passed in constructor, may be used when requesting
2626 * dynamically obtained attributes such as available, availableinfo, uservisible.
2627 * Also used to retrun information about current course or user.
2628 * @var course_modinfo
2630 private $modinfo;
2633 * Constructs object from database information plus extra required data.
2634 * @param object $data Array entry from cached sectioncache
2635 * @param int $number Section number (array key)
2636 * @param int $notused1 argument not used (informaion is available in $modinfo)
2637 * @param int $notused2 argument not used (informaion is available in $modinfo)
2638 * @param course_modinfo $modinfo Owner (needed for checking availability)
2639 * @param int $notused3 argument not used (informaion is available in $modinfo)
2641 public function __construct($data, $number, $notused1, $notused2, $modinfo, $notused3) {
2642 global $CFG;
2643 require_once($CFG->dirroot.'/course/lib.php');
2645 // Data that is always present
2646 $this->_id = $data->id;
2648 $defaults = self::$sectioncachedefaults +
2649 array('conditionscompletion' => array(),
2650 'conditionsgrade' => array(),
2651 'conditionsfield' => array());
2653 // Data that may use default values to save cache size
2654 foreach ($defaults as $field => $value) {
2655 if (isset($data->{$field})) {
2656 $this->{'_'.$field} = $data->{$field};
2657 } else {
2658 $this->{'_'.$field} = $value;
2662 // Other data from constructor arguments.
2663 $this->_section = $number;
2664 $this->modinfo = $modinfo;
2666 // Cached course format data.
2667 $course = $modinfo->get_course();
2668 if (!isset(self::$sectionformatoptions[$course->format])) {
2669 // Store list of section format options defined in each used course format.
2670 // They do not depend on particular course but only on its format.
2671 self::$sectionformatoptions[$course->format] =
2672 course_get_format($course)->section_format_options();
2674 foreach (self::$sectionformatoptions[$course->format] as $field => $option) {
2675 if (!empty($option['cache'])) {
2676 if (isset($data->{$field})) {
2677 $this->cachedformatoptions[$field] = $data->{$field};
2678 } else if (array_key_exists('cachedefault', $option)) {
2679 $this->cachedformatoptions[$field] = $option['cachedefault'];
2686 * Magic method to check if the property is set
2688 * @param string $name name of the property
2689 * @return bool
2691 public function __isset($name) {
2692 if (method_exists($this, 'get_'.$name) ||
2693 property_exists($this, '_'.$name) ||
2694 array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2695 $value = $this->__get($name);
2696 return isset($value);
2698 return false;
2702 * Magic method to check if the property is empty
2704 * @param string $name name of the property
2705 * @return bool
2707 public function __empty($name) {
2708 if (method_exists($this, 'get_'.$name) ||
2709 property_exists($this, '_'.$name) ||
2710 array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2711 $value = $this->__get($name);
2712 return empty($value);
2714 return true;
2718 * Magic method to retrieve the property, this is either basic section property
2719 * or availability information or additional properties added by course format
2721 * @param string $name name of the property
2722 * @return bool
2724 public function __get($name) {
2725 if (method_exists($this, 'get_'.$name)) {
2726 return $this->{'get_'.$name}();
2728 if (property_exists($this, '_'.$name)) {
2729 return $this->{'_'.$name};
2731 if (array_key_exists($name, $this->cachedformatoptions)) {
2732 return $this->cachedformatoptions[$name];
2734 // precheck if the option is defined in format to avoid unnecessary DB queries in get_format_options()
2735 if (array_key_exists($name, self::$sectionformatoptions[$this->modinfo->get_course()->format])) {
2736 $formatoptions = course_get_format($this->modinfo->get_course())->get_format_options($this);
2737 return $formatoptions[$name];
2739 debugging('Invalid section_info property accessed! '.$name);
2740 return null;
2744 * Finds whether this section is available at the moment for the current user.
2746 * The value can be accessed publicly as $sectioninfo->available
2748 * @return bool
2750 private function get_available() {
2751 global $CFG;
2752 $userid = $this->modinfo->get_user_id();
2753 if ($this->_available !== null || $userid == -1) {
2754 // Has already been calculated or does not need calculation.
2755 return $this->_available;
2757 $this->_available = true;
2758 $this->_availableinfo = '';
2759 if (!empty($CFG->enableavailability)) {
2760 // Get availability information.
2761 $ci = new \core_availability\info_section($this);
2762 $this->_available = $ci->is_available($this->_availableinfo, true,
2763 $userid, $this->modinfo);
2765 // Execute the hook from the course format that may override the available/availableinfo properties.
2766 $currentavailable = $this->_available;
2767 course_get_format($this->modinfo->get_course())->
2768 section_get_available_hook($this, $this->_available, $this->_availableinfo);
2769 if (!$currentavailable && $this->_available) {
2770 debugging('section_get_available_hook() can not make unavailable section available', DEBUG_DEVELOPER);
2771 $this->_available = $currentavailable;
2773 return $this->_available;
2777 * Returns the availability text shown next to the section on course page.
2779 * @return string
2781 private function get_availableinfo() {
2782 // Calling get_available() will also fill the availableinfo property
2783 // (or leave it null if there is no userid).
2784 $this->get_available();
2785 return $this->_availableinfo;
2789 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
2790 * and use {@link convert_to_array()}
2792 * @return ArrayIterator
2794 public function getIterator() {
2795 $ret = array();
2796 foreach (get_object_vars($this) as $key => $value) {
2797 if (substr($key, 0, 1) == '_') {
2798 if (method_exists($this, 'get'.$key)) {
2799 $ret[substr($key, 1)] = $this->{'get'.$key}();
2800 } else {
2801 $ret[substr($key, 1)] = $this->$key;
2805 $ret['sequence'] = $this->get_sequence();
2806 $ret['course'] = $this->get_course();
2807 $ret = array_merge($ret, course_get_format($this->modinfo->get_course())->get_format_options($this->_section));
2808 return new ArrayIterator($ret);
2812 * Works out whether activity is visible *for current user* - if this is false, they
2813 * aren't allowed to access it.
2815 * @return bool
2817 private function get_uservisible() {
2818 $userid = $this->modinfo->get_user_id();
2819 if ($this->_uservisible !== null || $userid == -1) {
2820 // Has already been calculated or does not need calculation.
2821 return $this->_uservisible;
2823 $this->_uservisible = true;
2824 if (!$this->_visible || !$this->get_available()) {
2825 $coursecontext = context_course::instance($this->get_course());
2826 if (!$this->_visible && !has_capability('moodle/course:viewhiddensections', $coursecontext, $userid) ||
2827 (!$this->get_available() &&
2828 !has_capability('moodle/course:ignoreavailabilityrestrictions', $coursecontext, $userid))) {
2830 $this->_uservisible = false;
2833 return $this->_uservisible;
2837 * Restores the course_sections.sequence value
2839 * @return string
2841 private function get_sequence() {
2842 if (!empty($this->modinfo->sections[$this->_section])) {
2843 return implode(',', $this->modinfo->sections[$this->_section]);
2844 } else {
2845 return '';
2850 * Returns course ID - from course_sections table
2852 * @return int
2854 private function get_course() {
2855 return $this->modinfo->get_course_id();
2859 * Modinfo object
2861 * @return course_modinfo
2863 private function get_modinfo() {
2864 return $this->modinfo;
2868 * Prepares section data for inclusion in sectioncache cache, removing items
2869 * that are set to defaults, and adding availability data if required.
2871 * Called by build_section_cache in course_modinfo only; do not use otherwise.
2872 * @param object $section Raw section data object
2874 public static function convert_for_section_cache($section) {
2875 global $CFG;
2877 // Course id stored in course table
2878 unset($section->course);
2879 // Section number stored in array key
2880 unset($section->section);
2881 // Sequence stored implicity in modinfo $sections array
2882 unset($section->sequence);
2884 // Remove default data
2885 foreach (self::$sectioncachedefaults as $field => $value) {
2886 // Exact compare as strings to avoid problems if some strings are set
2887 // to "0" etc.
2888 if (isset($section->{$field}) && $section->{$field} === $value) {
2889 unset($section->{$field});