2 // This file is part of Moodle - http://moodle.org/
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.
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/>.
18 * modinfolib.php - Functions/classes relating to cached information about module instances on
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
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);
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
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;
64 * List of fields from DB table 'course' that are cached in MUC and are always present in course_modinfo::$course
67 public static $cachedfields = array('shortname', 'fullname', 'format',
68 'enablecompletion', 'groupmode', 'groupmodeforce', 'cacherev');
71 * For convenience we store the course object here as it is needed in other parts of code
77 * Array of section data from cache
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
96 * Array from section id => section num.
102 * Array from int (cm id) => cm_info object
108 * Array from string (modname) => int (instance id) => cm_info object
114 * Groups that the current user belongs to. This value is calculated on first
115 * request to the property or function.
116 * When set, it is an array of grouping id => array of group id => group id.
117 * Includes grouping id 0 for 'all groups'.
123 * List of class read-only properties and their getter methods.
124 * Used by magic functions __get(), __isset(), __empty()
127 private static $standardproperties = array(
128 'courseid' => 'get_course_id',
129 'userid' => 'get_user_id',
130 'sections' => 'get_sections',
132 'instances' => 'get_instances',
133 'groups' => 'get_groups_all',
137 * Magic method getter
139 * @param string $name
142 public function __get($name) {
143 if (isset(self
::$standardproperties[$name])) {
144 $method = self
::$standardproperties[$name];
145 return $this->$method();
147 debugging('Invalid course_modinfo property accessed: '.$name);
153 * Magic method for function isset()
155 * @param string $name
158 public function __isset($name) {
159 if (isset(self
::$standardproperties[$name])) {
160 $value = $this->__get($name);
161 return isset($value);
167 * Magic method for function empty()
169 * @param string $name
172 public function __empty($name) {
173 if (isset(self
::$standardproperties[$name])) {
174 $value = $this->__get($name);
175 return empty($value);
181 * Magic method setter
183 * Will display the developer warning when trying to set/overwrite existing property.
185 * @param string $name
186 * @param mixed $value
188 public function __set($name, $value) {
189 debugging("It is not allowed to set the property course_modinfo::\${$name}", DEBUG_DEVELOPER
);
193 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
195 * It may not contain all fields from DB table {course} but always has at least the following:
196 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
200 public function get_course() {
201 return $this->course
;
205 * @return int Course ID
207 public function get_course_id() {
208 return $this->course
->id
;
212 * @return int User ID
214 public function get_user_id() {
215 return $this->userid
;
219 * @return array Array from section number (e.g. 0) to array of course-module IDs in that
220 * section; this only includes sections that contain at least one course-module
222 public function get_sections() {
223 return $this->sections
;
227 * @return cm_info[] Array from course-module instance to cm_info object within this course, in
228 * order of appearance
230 public function get_cms() {
235 * Obtains a single course-module object (for a course-module that is on this course).
236 * @param int $cmid Course-module ID
237 * @return cm_info Information about that course-module
238 * @throws moodle_exception If the course-module does not exist
240 public function get_cm($cmid) {
241 if (empty($this->cms
[$cmid])) {
242 throw new moodle_exception('invalidcoursemodule', 'error');
244 return $this->cms
[$cmid];
248 * Obtains all module instances on this course.
249 * @return cm_info[][] Array from module name => array from instance id => cm_info
251 public function get_instances() {
252 return $this->instances
;
256 * Returns array of localised human-readable module names used in this course
258 * @param bool $plural if true returns the plural form of modules names
261 public function get_used_module_names($plural = false) {
262 $modnames = get_module_types_names($plural);
263 $modnamesused = array();
264 foreach ($this->get_cms() as $cmid => $mod) {
265 if (!isset($modnamesused[$mod->modname
]) && isset($modnames[$mod->modname
]) && $mod->uservisible
) {
266 $modnamesused[$mod->modname
] = $modnames[$mod->modname
];
269 return $modnamesused;
273 * Obtains all instances of a particular module on this course.
274 * @param $modname Name of module (not full frankenstyle) e.g. 'label'
275 * @return cm_info[] Array from instance id => cm_info for modules on this course; empty if none
277 public function get_instances_of($modname) {
278 if (empty($this->instances
[$modname])) {
281 return $this->instances
[$modname];
285 * Groups that the current user belongs to organised by grouping id. Calculated on the first request.
286 * @return int[][] array of grouping id => array of group id => group id. Includes grouping id 0 for 'all groups'
288 private function get_groups_all() {
289 if (is_null($this->groups
)) {
290 // NOTE: Performance could be improved here. The system caches user groups
291 // in $USER->groupmember[$courseid] => array of groupid=>groupid. Unfortunately this
292 // structure does not include grouping information. It probably could be changed to
293 // do so, without a significant performance hit on login, thus saving this one query
295 $this->groups
= groups_get_user_groups($this->course
->id
, $this->userid
);
297 return $this->groups
;
301 * Returns groups that the current user belongs to on the course. Note: If not already
302 * available, this may make a database query.
303 * @param int $groupingid Grouping ID or 0 (default) for all groups
304 * @return int[] Array of int (group id) => int (same group id again); empty array if none
306 public function get_groups($groupingid = 0) {
307 $allgroups = $this->get_groups_all();
308 if (!isset($allgroups[$groupingid])) {
311 return $allgroups[$groupingid];
315 * Gets all sections as array from section number => data about section.
316 * @return section_info[] Array of section_info objects organised by section number
318 public function get_section_info_all() {
319 return $this->sectioninfo
;
323 * Gets data about specific numbered section.
324 * @param int $sectionnumber Number (not id) of section
325 * @param int $strictness Use MUST_EXIST to throw exception if it doesn't
326 * @return section_info Information for numbered section or null if not found
328 public function get_section_info($sectionnumber, $strictness = IGNORE_MISSING
) {
329 if (!array_key_exists($sectionnumber, $this->sectioninfo
)) {
330 if ($strictness === MUST_EXIST
) {
331 throw new moodle_exception('sectionnotexist');
336 return $this->sectioninfo
[$sectionnumber];
340 * Gets data about specific section ID.
341 * @param int $sectionid ID (not number) of section
342 * @param int $strictness Use MUST_EXIST to throw exception if it doesn't
343 * @return section_info|null Information for numbered section or null if not found
345 public function get_section_info_by_id(int $sectionid, int $strictness = IGNORE_MISSING
): ?section_info
{
347 if (!isset($this->sectionids
[$sectionid])) {
348 if ($strictness === MUST_EXIST
) {
349 throw new moodle_exception('sectionnotexist');
354 return $this->get_section_info($this->sectionids
[$sectionid], $strictness);
358 * Static cache for generated course_modinfo instances
360 * @see course_modinfo::instance()
361 * @see course_modinfo::clear_instance_cache()
362 * @var course_modinfo[]
364 protected static $instancecache = array();
367 * Timestamps (microtime) when the course_modinfo instances were last accessed
369 * It is used to remove the least recent accessed instances when static cache is full
373 protected static $cacheaccessed = array();
376 * Clears the cache used in course_modinfo::instance()
378 * Used in {@link get_fast_modinfo()} when called with argument $reset = true
379 * and in {@link rebuild_course_cache()}
381 * @param null|int|stdClass $courseorid if specified removes only cached value for this course
383 public static function clear_instance_cache($courseorid = null) {
384 if (empty($courseorid)) {
385 self
::$instancecache = array();
386 self
::$cacheaccessed = array();
389 if (is_object($courseorid)) {
390 $courseorid = $courseorid->id
;
392 if (isset(self
::$instancecache[$courseorid])) {
393 // Unsetting static variable in PHP is peculiar, it removes the reference,
394 // but data remain in memory. Prior to unsetting, the varable needs to be
395 // set to empty to remove its remains from memory.
396 self
::$instancecache[$courseorid] = '';
397 unset(self
::$instancecache[$courseorid]);
398 unset(self
::$cacheaccessed[$courseorid]);
403 * Returns the instance of course_modinfo for the specified course and specified user
405 * This function uses static cache for the retrieved instances. The cache
406 * size is limited by MAX_MODINFO_CACHE_SIZE. If instance is not found in
407 * the static cache or it was created for another user or the cacherev validation
408 * failed - a new instance is constructed and returned.
410 * Used in {@link get_fast_modinfo()}
412 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
413 * and recommended to have field 'cacherev') or just a course id
414 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
415 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
416 * @return course_modinfo
418 public static function instance($courseorid, $userid = 0) {
420 if (is_object($courseorid)) {
421 $course = $courseorid;
423 $course = (object)array('id' => $courseorid);
425 if (empty($userid)) {
429 if (!empty(self
::$instancecache[$course->id
])) {
430 if (self
::$instancecache[$course->id
]->userid
== $userid &&
431 (!isset($course->cacherev
) ||
432 $course->cacherev
== self
::$instancecache[$course->id
]->get_course()->cacherev
)) {
433 // This course's modinfo for the same user was recently retrieved, return cached.
434 self
::$cacheaccessed[$course->id
] = microtime(true);
435 return self
::$instancecache[$course->id
];
437 // Prevent potential reference problems when switching users.
438 self
::clear_instance_cache($course->id
);
441 $modinfo = new course_modinfo($course, $userid);
443 // We have a limit of MAX_MODINFO_CACHE_SIZE entries to store in static variable.
444 if (count(self
::$instancecache) >= MAX_MODINFO_CACHE_SIZE
) {
445 // Find the course that was the least recently accessed.
446 asort(self
::$cacheaccessed, SORT_NUMERIC
);
447 $courseidtoremove = key(array_reverse(self
::$cacheaccessed, true));
448 self
::clear_instance_cache($courseidtoremove);
451 // Add modinfo to the static cache.
452 self
::$instancecache[$course->id
] = $modinfo;
453 self
::$cacheaccessed[$course->id
] = microtime(true);
459 * Constructs based on course.
460 * Note: This constructor should not usually be called directly.
461 * Use get_fast_modinfo($course) instead as this maintains a cache.
462 * @param stdClass $course course object, only property id is required.
463 * @param int $userid User ID
464 * @throws moodle_exception if course is not found
466 public function __construct($course, $userid) {
467 global $CFG, $COURSE, $SITE, $DB;
469 if (!isset($course->cacherev
)) {
470 // We require presence of property cacherev to validate the course cache.
471 // No need to clone the $COURSE or $SITE object here because we clone it below anyway.
472 $course = get_course($course->id
, false);
475 $cachecoursemodinfo = cache
::make('core', 'coursemodinfo');
477 // Retrieve modinfo from cache. If not present or cacherev mismatches, call rebuild and retrieve again.
478 $coursemodinfo = $cachecoursemodinfo->get($course->id
);
479 if ($coursemodinfo === false ||
($course->cacherev
!= $coursemodinfo->cacherev
)) {
480 $lock = self
::get_course_cache_lock($course->id
);
482 // Only actually do the build if it's still needed after getting the lock (not if
483 // somebody else, who might have been holding the lock, built it already).
484 $coursemodinfo = $cachecoursemodinfo->get($course->id
);
485 if ($coursemodinfo === false ||
($course->cacherev
!= $coursemodinfo->cacherev
)) {
486 $coursemodinfo = self
::inner_build_course_cache($course, $lock);
493 // Set initial values
494 $this->userid
= $userid;
495 $this->sections
= array();
496 $this->sectionids
= [];
497 $this->cms
= array();
498 $this->instances
= array();
499 $this->groups
= null;
501 // If we haven't already preloaded contexts for the course, do it now
502 // Modules are also cached here as long as it's the first time this course has been preloaded.
503 context_helper
::preload_course($course->id
);
505 // Quick integrity check: as a result of race conditions modinfo may not be regenerated after the change.
506 // It is especially dangerous if modinfo contains the deleted course module, as it results in fatal error.
507 // We can check it very cheap by validating the existence of module context.
508 if ($course->id
== $COURSE->id ||
$course->id
== $SITE->id
) {
509 // Only verify current course (or frontpage) as pages with many courses may not have module contexts cached.
510 // (Uncached modules will result in a very slow verification).
511 foreach ($coursemodinfo->modinfo
as $mod) {
512 if (!context_module
::instance($mod->cm
, IGNORE_MISSING
)) {
513 debugging('Course cache integrity check failed: course module with id '. $mod->cm
.
514 ' does not have context. Rebuilding cache for course '. $course->id
);
515 // Re-request the course record from DB as well, don't use get_course() here.
516 $course = $DB->get_record('course', array('id' => $course->id
), '*', MUST_EXIST
);
517 $coursemodinfo = self
::build_course_cache($course);
523 // Overwrite unset fields in $course object with cached values, store the course object.
524 $this->course
= fullclone($course);
525 foreach ($coursemodinfo as $key => $value) {
526 if ($key !== 'modinfo' && $key !== 'sectioncache' &&
527 (!isset($this->course
->$key) ||
$key === 'cacherev')) {
528 $this->course
->$key = $value;
532 // Loop through each piece of module data, constructing it
533 static $modexists = array();
534 foreach ($coursemodinfo->modinfo
as $mod) {
535 if (!isset($mod->name
) ||
strval($mod->name
) === '') {
536 // something is wrong here
540 // Skip modules which don't exist
541 if (!array_key_exists($mod->mod
, $modexists)) {
542 $modexists[$mod->mod
] = file_exists("$CFG->dirroot/mod/$mod->mod/lib.php");
544 if (!$modexists[$mod->mod
]) {
548 // Construct info for this module
549 $cm = new cm_info($this, null, $mod, null);
551 // Store module in instances and cms array
552 if (!isset($this->instances
[$cm->modname
])) {
553 $this->instances
[$cm->modname
] = array();
555 $this->instances
[$cm->modname
][$cm->instance
] = $cm;
556 $this->cms
[$cm->id
] = $cm;
558 // Reconstruct sections. This works because modules are stored in order
559 if (!isset($this->sections
[$cm->sectionnum
])) {
560 $this->sections
[$cm->sectionnum
] = array();
562 $this->sections
[$cm->sectionnum
][] = $cm->id
;
565 // Expand section objects
566 $this->sectioninfo
= array();
567 foreach ($coursemodinfo->sectioncache
as $number => $data) {
568 $this->sectionids
[$data->id
] = $number;
569 $this->sectioninfo
[$number] = new section_info($data, $number, null, null,
575 * This method can not be used anymore.
577 * @see course_modinfo::build_course_cache()
578 * @deprecated since 2.6
580 public static function build_section_cache($courseid) {
581 throw new coding_exception('Function course_modinfo::build_section_cache() can not be used anymore.' .
582 ' Please use course_modinfo::build_course_cache() whenever applicable.');
586 * Builds a list of information about sections on a course to be stored in
587 * the course cache. (Does not include information that is already cached
588 * in some other way.)
590 * @param stdClass $course Course object (must contain fields
591 * @return array Information about sections, indexed by section number (not id)
593 protected static function build_course_section_cache($course) {
597 $sections = $DB->get_records('course_sections', array('course' => $course->id
), 'section',
598 'section, id, course, name, summary, summaryformat, sequence, visible, availability');
599 $compressedsections = array();
601 $formatoptionsdef = course_get_format($course)->section_format_options();
602 // Remove unnecessary data and add availability
603 foreach ($sections as $number => $section) {
604 // Add cached options from course format to $section object
605 foreach ($formatoptionsdef as $key => $option) {
606 if (!empty($option['cache'])) {
607 $formatoptions = course_get_format($course)->get_format_options($section);
608 if (!array_key_exists('cachedefault', $option) ||
$option['cachedefault'] !== $formatoptions[$key]) {
609 $section->$key = $formatoptions[$key];
613 // Clone just in case it is reused elsewhere
614 $compressedsections[$number] = clone($section);
615 section_info
::convert_for_section_cache($compressedsections[$number]);
618 return $compressedsections;
622 * Gets a lock for rebuilding the cache of a single course.
624 * Caller must release the returned lock.
626 * This is used to ensure that the cache rebuild doesn't happen multiple times in parallel.
627 * This function will wait up to 1 minute for the lock to be obtained. If the lock cannot
628 * be obtained, it throws an exception.
630 * @param int $courseid Course id
631 * @return \core\lock\lock Lock (must be released!)
632 * @throws moodle_exception If the lock cannot be obtained
634 protected static function get_course_cache_lock($courseid) {
635 // Get database lock to ensure this doesn't happen multiple times in parallel. Wait a
636 // reasonable time for the lock to be released, so we can give a suitable error message.
637 // In case the system crashes while building the course cache, the lock will automatically
638 // expire after a (slightly longer) period.
639 $lockfactory = \core\lock\lock_config
::get_lock_factory('core_modinfo');
640 $lock = $lockfactory->get_lock('build_course_cache_' . $courseid,
641 self
::COURSE_CACHE_LOCK_WAIT
, self
::COURSE_CACHE_LOCK_EXPIRY
);
643 throw new moodle_exception('locktimeout', '', '', null,
644 'core_modinfo/build_course_cache_' . $courseid);
650 * Builds and stores in MUC object containing information about course
651 * modules and sections together with cached fields from table course.
653 * @param stdClass $course object from DB table course. Must have property 'id'
654 * but preferably should have all cached fields.
655 * @return stdClass object with all cached keys of the course plus fields modinfo and sectioncache.
656 * The same object is stored in MUC
657 * @throws moodle_exception if course is not found (if $course object misses some of the
658 * necessary fields it is re-requested from database)
660 public static function build_course_cache($course) {
661 if (empty($course->id
)) {
662 throw new coding_exception('Object $course is missing required property \id\'');
665 $lock = self
::get_course_cache_lock($course->id
);
667 return self
::inner_build_course_cache($course, $lock);
674 * Called to build course cache when there is already a lock obtained.
676 * @param stdClass $course object from DB table course
677 * @param \core\lock\lock $lock Lock object - not actually used, just there to indicate you have a lock
678 * @return stdClass Course object that has been stored in MUC
680 protected static function inner_build_course_cache($course, \core\lock\lock
$lock) {
682 require_once("{$CFG->dirroot}/course/lib.php");
684 // Ensure object has all necessary fields.
685 foreach (self
::$cachedfields as $key) {
686 if (!isset($course->$key)) {
687 $course = $DB->get_record('course', array('id' => $course->id
),
688 implode(',', array_merge(array('id'), self
::$cachedfields)), MUST_EXIST
);
692 // Retrieve all information about activities and sections.
693 // This may take time on large courses and it is possible that another user modifies the same course during this process.
694 // Field cacherev stored in both DB and cache will ensure that cached data matches the current course state.
695 $coursemodinfo = new stdClass();
696 $coursemodinfo->modinfo
= get_array_of_activities($course->id
);
697 $coursemodinfo->sectioncache
= self
::build_course_section_cache($course);
698 foreach (self
::$cachedfields as $key) {
699 $coursemodinfo->$key = $course->$key;
701 // Set the accumulated activities and sections information in cache, together with cacherev.
702 $cachecoursemodinfo = cache
::make('core', 'coursemodinfo');
703 $cachecoursemodinfo->set($course->id
, $coursemodinfo);
704 return $coursemodinfo;
710 * Data about a single module on a course. This contains most of the fields in the course_modules
711 * table, plus additional data when required.
713 * The object can be accessed by core or any plugin (i.e. course format, block, filter, etc.) as
714 * get_fast_modinfo($courseorid)->cms[$coursemoduleid]
716 * get_fast_modinfo($courseorid)->instances[$moduletype][$instanceid]
718 * There are three stages when activity module can add/modify data in this object:
720 * <b>Stage 1 - during building the cache.</b>
721 * Allows to add to the course cache static user-independent information about the module.
722 * Modules should try to include only absolutely necessary information that may be required
723 * when displaying course view page. The information is stored in application-level cache
724 * and reset when {@link rebuild_course_cache()} is called or cache is purged by admin.
726 * Modules can implement callback XXX_get_coursemodule_info() returning instance of object
727 * {@link cached_cm_info}
729 * <b>Stage 2 - dynamic data.</b>
730 * Dynamic data is user-dependent, it is stored in request-level cache. To reset this cache
731 * {@link get_fast_modinfo()} with $reset argument may be called.
733 * Dynamic data is obtained when any of the following properties/methods is requested:
734 * - {@link cm_info::$url}
735 * - {@link cm_info::$name}
736 * - {@link cm_info::$onclick}
737 * - {@link cm_info::get_icon_url()}
738 * - {@link cm_info::$uservisible}
739 * - {@link cm_info::$available}
740 * - {@link cm_info::$availableinfo}
741 * - plus any of the properties listed in Stage 3.
743 * Modules can implement callback <b>XXX_cm_info_dynamic()</b> and inside this callback they
744 * are allowed to use any of the following set methods:
745 * - {@link cm_info::set_available()}
746 * - {@link cm_info::set_name()}
747 * - {@link cm_info::set_no_view_link()}
748 * - {@link cm_info::set_user_visible()}
749 * - {@link cm_info::set_on_click()}
750 * - {@link cm_info::set_icon_url()}
751 * - {@link cm_info::override_customdata()}
752 * Any methods affecting view elements can also be set in this callback.
754 * <b>Stage 3 (view data).</b>
755 * Also user-dependend data stored in request-level cache. Second stage is created
756 * because populating the view data can be expensive as it may access much more
757 * Moodle APIs such as filters, user information, output renderers and we
758 * don't want to request it until necessary.
759 * View data is obtained when any of the following properties/methods is requested:
760 * - {@link cm_info::$afterediticons}
761 * - {@link cm_info::$content}
762 * - {@link cm_info::get_formatted_content()}
763 * - {@link cm_info::$extraclasses}
764 * - {@link cm_info::$afterlink}
766 * Modules can implement callback <b>XXX_cm_info_view()</b> and inside this callback they
767 * are allowed to use any of the following set methods:
768 * - {@link cm_info::set_after_edit_icons()}
769 * - {@link cm_info::set_after_link()}
770 * - {@link cm_info::set_content()}
771 * - {@link cm_info::set_extra_classes()}
773 * @property-read int $id Course-module ID - from course_modules table
774 * @property-read int $instance Module instance (ID within module table) - from course_modules table
775 * @property-read int $course Course ID - from course_modules table
776 * @property-read string $idnumber 'ID number' from course-modules table (arbitrary text set by user) - from
777 * course_modules table
778 * @property-read int $added Time that this course-module was added (unix time) - from course_modules table
779 * @property-read int $visible Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
780 * course_modules table
781 * @property-read int $visibleoncoursepage Visible on course page setting - from course_modules table, adjusted to
782 * whether course format allows this module to have the "stealth" mode
783 * @property-read int $visibleold Old visible setting (if the entire section is hidden, the previous value for
784 * visible is stored in this field) - from course_modules table
785 * @property-read int $groupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
786 * course_modules table. Use {@link cm_info::$effectivegroupmode} to find the actual group mode that may be forced by course.
787 * @property-read int $groupingid Grouping ID (0 = all groupings)
788 * @property-read bool $coursegroupmodeforce Indicates whether the course containing the module has forced the groupmode
789 * This means that cm_info::$groupmode should be ignored and cm_info::$coursegroupmode be used instead
790 * @property-read int $coursegroupmode Group mode (one of the constants NOGROUPS, SEPARATEGROUPS, or VISIBLEGROUPS) - from
791 * course table - as specified for the course containing the module
792 * Effective only if {@link cm_info::$coursegroupmodeforce} is set
793 * @property-read int $effectivegroupmode Effective group mode for this module (one of the constants NOGROUPS, SEPARATEGROUPS,
794 * or VISIBLEGROUPS). This can be different from groupmode set for the module if the groupmode is forced for the course.
795 * This value will always be NOGROUPS if module type does not support group mode.
796 * @property-read int $indent Indent level on course page (0 = no indent) - from course_modules table
797 * @property-read int $completion Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
798 * course_modules table
799 * @property-read mixed $completiongradeitemnumber Set to the item number (usually 0) if completion depends on a particular
800 * grade of this activity, or null if completion does not depend on a grade - from course_modules table
801 * @property-read int $completionview 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
802 * @property-read int $completionexpected Set to a unix time if completion of this activity is expected at a
803 * particular time, 0 if no time set - from course_modules table
804 * @property-read string $availability Availability information as JSON string or null if none -
805 * from course_modules table
806 * @property-read int $showdescription Controls whether the description of the activity displays on the course main page (in
807 * addition to anywhere it might display within the activity itself). 0 = do not show
808 * on main page, 1 = show on main page.
809 * @property-read string $extra (deprecated) Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
810 * course page - from cached data in modinfo field. Deprecated, replaced by ->extraclasses and ->onclick
811 * @property-read string $icon Name of icon to use - from cached data in modinfo field
812 * @property-read string $iconcomponent Component that contains icon - from cached data in modinfo field
813 * @property-read string $modname Name of module e.g. 'forum' (this is the same name as the module's main database
814 * table) - from cached data in modinfo field
815 * @property-read int $module ID of module type - from course_modules table
816 * @property-read string $name Name of module instance for display on page e.g. 'General discussion forum' - from cached
817 * data in modinfo field
818 * @property-read int $sectionnum Section number that this course-module is in (section 0 = above the calendar, section 1
819 * = week/topic 1, etc) - from cached data in modinfo field
820 * @property-read int $section Section id - from course_modules table
821 * @property-read array $conditionscompletion Availability conditions for this course-module based on the completion of other
822 * course-modules (array from other course-module id to required completion state for that
823 * module) - from cached data in modinfo field
824 * @property-read array $conditionsgrade Availability conditions for this course-module based on course grades (array from
825 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
826 * @property-read array $conditionsfield Availability conditions for this course-module based on user fields
827 * @property-read bool $available True if this course-module is available to students i.e. if all availability conditions
828 * are met - obtained dynamically
829 * @property-read string $availableinfo If course-module is not available to students, this string gives information about
830 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
831 * January 2010') for display on main page - obtained dynamically
832 * @property-read bool $uservisible True if this course-module is available to the CURRENT user (for example, if current user
833 * has viewhiddenactivities capability, they can access the course-module even if it is not
834 * visible or not available, so this would be true in that case)
835 * @property-read context_module $context Module context
836 * @property-read string $modfullname Returns a localised human-readable name of the module type - calculated on request
837 * @property-read string $modplural Returns a localised human-readable name of the module type in plural form - calculated on request
838 * @property-read string $content Content to display on main (view) page - calculated on request
839 * @property-read moodle_url $url URL to link to for this module, or null if it doesn't have a view page - calculated on request
840 * @property-read string $extraclasses Extra CSS classes to add to html output for this activity on main page - calculated on request
841 * @property-read string $onclick Content of HTML on-click attribute already escaped - calculated on request
842 * @property-read mixed $customdata Optional custom data stored in modinfo cache for this activity, or null if none
843 * @property-read string $afterlink Extra HTML code to display after link - calculated on request
844 * @property-read string $afterediticons Extra HTML code to display after editing icons (e.g. more icons) - calculated on request
845 * @property-read bool $deletioninprogress True if this course module is scheduled for deletion, false otherwise.
847 class cm_info
implements IteratorAggregate
{
849 * State: Only basic data from modinfo cache is available.
851 const STATE_BASIC
= 0;
854 * State: In the process of building dynamic data (to avoid recursive calls to obtain_dynamic_data())
856 const STATE_BUILDING_DYNAMIC
= 1;
859 * State: Dynamic data is available too.
861 const STATE_DYNAMIC
= 2;
864 * State: In the process of building view data (to avoid recursive calls to obtain_view_data())
866 const STATE_BUILDING_VIEW
= 3;
869 * State: View data (for course page) is available.
871 const STATE_VIEW
= 4;
875 * @var course_modinfo
880 * Level of information stored inside this object (STATE_xx constant)
886 * Course-module ID - from course_modules table
892 * Module instance (ID within module table) - from course_modules table
898 * 'ID number' from course-modules table (arbitrary text set by user) - from
899 * course_modules table
905 * Time that this course-module was added (unix time) - from course_modules table
911 * This variable is not used and is included here only so it can be documented.
912 * Once the database entry is removed from course_modules, it should be deleted
915 * @deprecated Do not use this variable
920 * Visible setting (0 or 1; if this is 0, students cannot see/access the activity) - from
921 * course_modules table
927 * Visible on course page setting - from course_modules table
930 private $visibleoncoursepage;
933 * Old visible setting (if the entire section is hidden, the previous value for
934 * visible is stored in this field) - from course_modules table
940 * Group mode (one of the constants NONE, SEPARATEGROUPS, or VISIBLEGROUPS) - from
941 * course_modules table
947 * Grouping ID (0 = all groupings)
953 * Indent level on course page (0 = no indent) - from course_modules table
959 * Activity completion setting for this activity, COMPLETION_TRACKING_xx constant - from
960 * course_modules table
966 * Set to the item number (usually 0) if completion depends on a particular
967 * grade of this activity, or null if completion does not depend on a grade - from
968 * course_modules table
971 private $completiongradeitemnumber;
974 * 1 if pass grade completion is enabled, 0 otherwise - from course_modules table
977 private $completionpassgrade;
980 * 1 if 'on view' completion is enabled, 0 otherwise - from course_modules table
983 private $completionview;
986 * Set to a unix time if completion of this activity is expected at a
987 * particular time, 0 if no time set - from course_modules table
990 private $completionexpected;
993 * Availability information as JSON string or null if none - from course_modules table
996 private $availability;
999 * Controls whether the description of the activity displays on the course main page (in
1000 * addition to anywhere it might display within the activity itself). 0 = do not show
1001 * on main page, 1 = show on main page.
1004 private $showdescription;
1007 * Extra HTML that is put in an unhelpful part of the HTML when displaying this module in
1008 * course page - from cached data in modinfo field
1009 * @deprecated This is crazy, don't use it. Replaced by ->extraclasses and ->onclick
1015 * Name of icon to use - from cached data in modinfo field
1021 * Component that contains icon - from cached data in modinfo field
1024 private $iconcomponent;
1027 * Name of module e.g. 'forum' (this is the same name as the module's main database
1028 * table) - from cached data in modinfo field
1034 * ID of module - from course_modules table
1040 * Name of module instance for display on page e.g. 'General discussion forum' - from cached
1041 * data in modinfo field
1047 * Section number that this course-module is in (section 0 = above the calendar, section 1
1048 * = week/topic 1, etc) - from cached data in modinfo field
1051 private $sectionnum;
1054 * Section id - from course_modules table
1060 * Availability conditions for this course-module based on the completion of other
1061 * course-modules (array from other course-module id to required completion state for that
1062 * module) - from cached data in modinfo field
1065 private $conditionscompletion;
1068 * Availability conditions for this course-module based on course grades (array from
1069 * grade item id to object with ->min, ->max fields) - from cached data in modinfo field
1072 private $conditionsgrade;
1075 * Availability conditions for this course-module based on user fields
1078 private $conditionsfield;
1081 * True if this course-module is available to students i.e. if all availability conditions
1082 * are met - obtained dynamically
1088 * If course-module is not available to students, this string gives information about
1089 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
1090 * January 2010') for display on main page - obtained dynamically
1093 private $availableinfo;
1096 * True if this course-module is available to the CURRENT user (for example, if current user
1097 * has viewhiddenactivities capability, they can access the course-module even if it is not
1098 * visible or not available, so this would be true in that case)
1101 private $uservisible;
1104 * True if this course-module is visible to the CURRENT user on the course page
1107 private $uservisibleoncoursepage;
1122 private $contentisformatted;
1127 private $extraclasses;
1130 * @var moodle_url full external url pointing to icon image for activity
1142 private $customdata;
1152 private $afterediticons;
1155 * @var bool representing the deletion state of the module. True if the mod is scheduled for deletion.
1157 private $deletioninprogress;
1160 * List of class read-only properties and their getter methods.
1161 * Used by magic functions __get(), __isset(), __empty()
1164 private static $standardproperties = array(
1166 'content' => 'get_content',
1167 'extraclasses' => 'get_extra_classes',
1168 'onclick' => 'get_on_click',
1169 'customdata' => 'get_custom_data',
1170 'afterlink' => 'get_after_link',
1171 'afterediticons' => 'get_after_edit_icons',
1172 'modfullname' => 'get_module_type_name',
1173 'modplural' => 'get_module_type_name_plural',
1176 'availability' => false,
1177 'available' => 'get_available',
1178 'availableinfo' => 'get_available_info',
1179 'completion' => false,
1180 'completionexpected' => false,
1181 'completiongradeitemnumber' => false,
1182 'completionpassgrade' => false,
1183 'completionview' => false,
1184 'conditionscompletion' => false,
1185 'conditionsfield' => false,
1186 'conditionsgrade' => false,
1187 'context' => 'get_context',
1188 'course' => 'get_course_id',
1189 'coursegroupmode' => 'get_course_groupmode',
1190 'coursegroupmodeforce' => 'get_course_groupmodeforce',
1191 'effectivegroupmode' => 'get_effective_groupmode',
1193 'groupingid' => false,
1194 'groupmembersonly' => 'get_deprecated_group_members_only',
1195 'groupmode' => false,
1197 'iconcomponent' => false,
1198 'idnumber' => false,
1200 'instance' => false,
1203 'name' => 'get_name',
1206 'sectionnum' => false,
1207 'showdescription' => false,
1208 'uservisible' => 'get_user_visible',
1210 'visibleoncoursepage' => false,
1211 'visibleold' => false,
1212 'deletioninprogress' => false
1216 * List of methods with no arguments that were public prior to Moodle 2.6.
1218 * They can still be accessed publicly via magic __call() function with no warnings
1219 * but are not listed in the class methods list.
1220 * For the consistency of the code it is better to use corresponding properties.
1222 * These methods be deprecated completely in later versions.
1224 * @var array $standardmethods
1226 private static $standardmethods = array(
1227 // Following methods are not recommended to use because there have associated read-only properties.
1230 'get_extra_classes',
1234 'get_after_edit_icons',
1235 // Method obtain_dynamic_data() should not be called from outside of this class but it was public before Moodle 2.6.
1236 'obtain_dynamic_data',
1240 * Magic method to call functions that are now declared as private but were public in Moodle before 2.6.
1241 * These private methods can not be used anymore.
1243 * @param string $name
1244 * @param array $arguments
1246 * @throws coding_exception
1248 public function __call($name, $arguments) {
1249 if (in_array($name, self
::$standardmethods)) {
1250 $message = "cm_info::$name() can not be used anymore.";
1251 if ($alternative = array_search($name, self
::$standardproperties)) {
1252 $message .= " Please use the property cm_info->$alternative instead.";
1254 throw new coding_exception($message);
1256 throw new coding_exception("Method cm_info::{$name}() does not exist");
1260 * Magic method getter
1262 * @param string $name
1265 public function __get($name) {
1266 if (isset(self
::$standardproperties[$name])) {
1267 if ($method = self
::$standardproperties[$name]) {
1268 return $this->$method();
1270 return $this->$name;
1273 debugging('Invalid cm_info property accessed: '.$name);
1279 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
1280 * and use {@link convert_to_array()}
1282 * @return ArrayIterator
1284 public function getIterator() {
1285 // Make sure dynamic properties are retrieved prior to view properties.
1286 $this->obtain_dynamic_data();
1289 // Do not iterate over deprecated properties.
1290 $props = self
::$standardproperties;
1291 unset($props['groupmembersonly']);
1293 foreach ($props as $key => $unused) {
1294 $ret[$key] = $this->__get($key);
1296 return new ArrayIterator($ret);
1300 * Magic method for function isset()
1302 * @param string $name
1305 public function __isset($name) {
1306 if (isset(self
::$standardproperties[$name])) {
1307 $value = $this->__get($name);
1308 return isset($value);
1314 * Magic method for function empty()
1316 * @param string $name
1319 public function __empty($name) {
1320 if (isset(self
::$standardproperties[$name])) {
1321 $value = $this->__get($name);
1322 return empty($value);
1328 * Magic method setter
1330 * Will display the developer warning when trying to set/overwrite property.
1332 * @param string $name
1333 * @param mixed $value
1335 public function __set($name, $value) {
1336 debugging("It is not allowed to set the property cm_info::\${$name}", DEBUG_DEVELOPER
);
1340 * @return bool True if this module has a 'view' page that should be linked to in navigation
1341 * etc (note: modules may still have a view.php file, but return false if this is not
1342 * intended to be linked to from 'normal' parts of the interface; this is what label does).
1344 public function has_view() {
1345 return !is_null($this->url
);
1349 * Gets the URL to link to for this module.
1351 * This method is normally called by the property ->url, but can be called directly if
1352 * there is a case when it might be called recursively (you can't call property values
1355 * @return moodle_url URL to link to for this module, or null if it doesn't have a view page
1357 public function get_url() {
1358 $this->obtain_dynamic_data();
1363 * Obtains content to display on main (view) page.
1364 * Note: Will collect view data, if not already obtained.
1365 * @return string Content to display on main page below link, or empty string if none
1367 private function get_content() {
1368 $this->obtain_view_data();
1369 return $this->content
;
1373 * Returns the content to display on course/overview page, formatted and passed through filters
1375 * if $options['context'] is not specified, the module context is used
1377 * @param array|stdClass $options formatting options, see {@link format_text()}
1380 public function get_formatted_content($options = array()) {
1381 $this->obtain_view_data();
1382 if (empty($this->content
)) {
1385 if ($this->contentisformatted
) {
1386 return $this->content
;
1389 // Improve filter performance by preloading filter setttings for all
1390 // activities on the course (this does nothing if called multiple
1392 filter_preload_activities($this->get_modinfo());
1394 $options = (array)$options;
1395 if (!isset($options['context'])) {
1396 $options['context'] = $this->get_context();
1398 return format_text($this->content
, FORMAT_HTML
, $options);
1402 * Getter method for property $name, ensures that dynamic data is obtained.
1404 * This method is normally called by the property ->name, but can be called directly if there
1405 * is a case when it might be called recursively (you can't call property values recursively).
1409 public function get_name() {
1410 $this->obtain_dynamic_data();
1415 * Returns the name to display on course/overview page, formatted and passed through filters
1417 * if $options['context'] is not specified, the module context is used
1419 * @param array|stdClass $options formatting options, see {@link format_string()}
1422 public function get_formatted_name($options = array()) {
1424 $options = (array)$options;
1425 if (!isset($options['context'])) {
1426 $options['context'] = $this->get_context();
1428 // Improve filter performance by preloading filter setttings for all
1429 // activities on the course (this does nothing if called multiple
1431 if (!empty($CFG->filterall
)) {
1432 filter_preload_activities($this->get_modinfo());
1434 return format_string($this->get_name(), true, $options);
1438 * Note: Will collect view data, if not already obtained.
1439 * @return string Extra CSS classes to add to html output for this activity on main page
1441 private function get_extra_classes() {
1442 $this->obtain_view_data();
1443 return $this->extraclasses
;
1447 * @return string Content of HTML on-click attribute. This string will be used literally
1448 * as a string so should be pre-escaped.
1450 private function get_on_click() {
1451 // Does not need view data; may be used by navigation
1452 $this->obtain_dynamic_data();
1453 return $this->onclick
;
1456 * Getter method for property $customdata, ensures that dynamic data is retrieved.
1458 * This method is normally called by the property ->customdata, but can be called directly if there
1459 * is a case when it might be called recursively (you can't call property values recursively).
1461 * @return mixed Optional custom data stored in modinfo cache for this activity, or null if none
1463 public function get_custom_data() {
1464 $this->obtain_dynamic_data();
1465 return $this->customdata
;
1469 * Note: Will collect view data, if not already obtained.
1470 * @return string Extra HTML code to display after link
1472 private function get_after_link() {
1473 $this->obtain_view_data();
1474 return $this->afterlink
;
1478 * Note: Will collect view data, if not already obtained.
1479 * @return string Extra HTML code to display after editing icons (e.g. more icons)
1481 private function get_after_edit_icons() {
1482 $this->obtain_view_data();
1483 return $this->afterediticons
;
1487 * @param moodle_core_renderer $output Output render to use, or null for default (global)
1488 * @return moodle_url Icon URL for a suitable icon to put beside this cm
1490 public function get_icon_url($output = null) {
1492 $this->obtain_dynamic_data();
1496 // Support modules setting their own, external, icon image
1497 if (!empty($this->iconurl
)) {
1498 $icon = $this->iconurl
;
1500 // Fallback to normal local icon + component procesing
1501 } else if (!empty($this->icon
)) {
1502 if (substr($this->icon
, 0, 4) === 'mod/') {
1503 list($modname, $iconname) = explode('/', substr($this->icon
, 4), 2);
1504 $icon = $output->image_url($iconname, $modname);
1506 if (!empty($this->iconcomponent
)) {
1507 // Icon has specified component
1508 $icon = $output->image_url($this->icon
, $this->iconcomponent
);
1510 // Icon does not have specified component, use default
1511 $icon = $output->image_url($this->icon
);
1515 $icon = $output->image_url('icon', $this->modname
);
1521 * @param string $textclasses additionnal classes for grouping label
1522 * @return string An empty string or HTML grouping label span tag
1524 public function get_grouping_label($textclasses = '') {
1525 $groupinglabel = '';
1526 if ($this->effectivegroupmode
!= NOGROUPS
&& !empty($this->groupingid
) &&
1527 has_capability('moodle/course:managegroups', context_course
::instance($this->course
))) {
1528 $groupings = groups_get_all_groupings($this->course
);
1529 $groupinglabel = html_writer
::tag('span', '('.format_string($groupings[$this->groupingid
]->name
).')',
1530 array('class' => 'groupinglabel '.$textclasses));
1532 return $groupinglabel;
1536 * Returns a localised human-readable name of the module type
1538 * @param bool $plural return plural form
1541 public function get_module_type_name($plural = false) {
1542 $modnames = get_module_types_names($plural);
1543 if (isset($modnames[$this->modname
])) {
1544 return $modnames[$this->modname
];
1551 * Returns a localised human-readable name of the module type in plural form - calculated on request
1555 private function get_module_type_name_plural() {
1556 return $this->get_module_type_name(true);
1560 * @return course_modinfo Modinfo object that this came from
1562 public function get_modinfo() {
1563 return $this->modinfo
;
1567 * Returns the section this module belongs to
1569 * @return section_info
1571 public function get_section_info() {
1572 return $this->modinfo
->get_section_info($this->sectionnum
);
1576 * Returns course object that was used in the first {@link get_fast_modinfo()} call.
1578 * It may not contain all fields from DB table {course} but always has at least the following:
1579 * id,shortname,fullname,format,enablecompletion,groupmode,groupmodeforce,cacherev
1581 * If the course object lacks the field you need you can use the global
1582 * function {@link get_course()} that will save extra query if you access
1583 * current course or frontpage course.
1587 public function get_course() {
1588 return $this->modinfo
->get_course();
1592 * Returns course id for which the modinfo was generated.
1596 private function get_course_id() {
1597 return $this->modinfo
->get_course_id();
1601 * Returns group mode used for the course containing the module
1603 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1605 private function get_course_groupmode() {
1606 return $this->modinfo
->get_course()->groupmode
;
1610 * Returns whether group mode is forced for the course containing the module
1614 private function get_course_groupmodeforce() {
1615 return $this->modinfo
->get_course()->groupmodeforce
;
1619 * Returns effective groupmode of the module that may be overwritten by forced course groupmode.
1621 * @return int one of constants NOGROUPS, SEPARATEGROUPS, VISIBLEGROUPS
1623 private function get_effective_groupmode() {
1624 $groupmode = $this->groupmode
;
1625 if ($this->modinfo
->get_course()->groupmodeforce
) {
1626 $groupmode = $this->modinfo
->get_course()->groupmode
;
1627 if ($groupmode != NOGROUPS
&& !plugin_supports('mod', $this->modname
, FEATURE_GROUPS
, false)) {
1628 $groupmode = NOGROUPS
;
1635 * @return context_module Current module context
1637 private function get_context() {
1638 return context_module
::instance($this->id
);
1642 * Returns itself in the form of stdClass.
1644 * The object includes all fields that table course_modules has and additionally
1645 * fields 'name', 'modname', 'sectionnum' (if requested).
1647 * This can be used as a faster alternative to {@link get_coursemodule_from_id()}
1649 * @param bool $additionalfields include additional fields 'name', 'modname', 'sectionnum'
1652 public function get_course_module_record($additionalfields = false) {
1653 $cmrecord = new stdClass();
1655 // Standard fields from table course_modules.
1656 static $cmfields = array('id', 'course', 'module', 'instance', 'section', 'idnumber', 'added',
1657 'score', 'indent', 'visible', 'visibleoncoursepage', 'visibleold', 'groupmode', 'groupingid',
1658 'completion', 'completiongradeitemnumber', 'completionview', 'completionexpected', 'completionpassgrade',
1659 'showdescription', 'availability', 'deletioninprogress');
1660 foreach ($cmfields as $key) {
1661 $cmrecord->$key = $this->$key;
1664 // Additional fields that function get_coursemodule_from_id() adds.
1665 if ($additionalfields) {
1666 $cmrecord->name
= $this->name
;
1667 $cmrecord->modname
= $this->modname
;
1668 $cmrecord->sectionnum
= $this->sectionnum
;
1678 * Sets content to display on course view page below link (if present).
1679 * @param string $content New content as HTML string (empty string if none)
1680 * @param bool $isformatted Whether user content is already passed through format_text/format_string and should not
1681 * be formatted again. This can be useful when module adds interactive elements on top of formatted user text.
1684 public function set_content($content, $isformatted = false) {
1685 $this->content
= $content;
1686 $this->contentisformatted
= $isformatted;
1690 * Sets extra classes to include in CSS.
1691 * @param string $extraclasses Extra classes (empty string if none)
1694 public function set_extra_classes($extraclasses) {
1695 $this->extraclasses
= $extraclasses;
1699 * Sets the external full url that points to the icon being used
1700 * by the activity. Useful for external-tool modules (lti...)
1701 * If set, takes precedence over $icon and $iconcomponent
1703 * @param moodle_url $iconurl full external url pointing to icon image for activity
1706 public function set_icon_url(moodle_url
$iconurl) {
1707 $this->iconurl
= $iconurl;
1711 * Sets value of on-click attribute for JavaScript.
1712 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1713 * @param string $onclick New onclick attribute which should be HTML-escaped
1714 * (empty string if none)
1717 public function set_on_click($onclick) {
1718 $this->check_not_view_only();
1719 $this->onclick
= $onclick;
1723 * Overrides the value of an element in the customdata array.
1725 * @param string $name The key in the customdata array
1726 * @param mixed $value The value
1728 public function override_customdata($name, $value) {
1729 if (!is_array($this->customdata
)) {
1730 $this->customdata
= [];
1732 $this->customdata
[$name] = $value;
1736 * Sets HTML that displays after link on course view page.
1737 * @param string $afterlink HTML string (empty string if none)
1740 public function set_after_link($afterlink) {
1741 $this->afterlink
= $afterlink;
1745 * Sets HTML that displays after edit icons on course view page.
1746 * @param string $afterediticons HTML string (empty string if none)
1749 public function set_after_edit_icons($afterediticons) {
1750 $this->afterediticons
= $afterediticons;
1754 * Changes the name (text of link) for this module instance.
1755 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1756 * @param string $name Name of activity / link text
1759 public function set_name($name) {
1760 if ($this->state
< self
::STATE_BUILDING_DYNAMIC
) {
1761 $this->update_user_visible();
1763 $this->name
= $name;
1767 * Turns off the view link for this module instance.
1768 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1771 public function set_no_view_link() {
1772 $this->check_not_view_only();
1777 * Sets the 'uservisible' flag. This can be used (by setting false) to prevent access and
1778 * display of this module link for the current user.
1779 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1780 * @param bool $uservisible
1783 public function set_user_visible($uservisible) {
1784 $this->check_not_view_only();
1785 $this->uservisible
= $uservisible;
1789 * Sets the 'available' flag and related details. This flag is normally used to make
1790 * course modules unavailable until a certain date or condition is met. (When a course
1791 * module is unavailable, it is still visible to users who have viewhiddenactivities
1794 * When this is function is called, user-visible status is recalculated automatically.
1796 * The $showavailability flag does not really do anything any more, but is retained
1797 * for backward compatibility. Setting this to false will cause $availableinfo to
1800 * Note: May not be called from _cm_info_view (only _cm_info_dynamic).
1801 * @param bool $available False if this item is not 'available'
1802 * @param int $showavailability 0 = do not show this item at all if it's not available,
1803 * 1 = show this item greyed out with the following message
1804 * @param string $availableinfo Information about why this is not available, or
1805 * empty string if not displaying
1808 public function set_available($available, $showavailability=0, $availableinfo='') {
1809 $this->check_not_view_only();
1810 $this->available
= $available;
1811 if (!$showavailability) {
1812 $availableinfo = '';
1814 $this->availableinfo
= $availableinfo;
1815 $this->update_user_visible();
1819 * Some set functions can only be called from _cm_info_dynamic and not _cm_info_view.
1820 * This is because they may affect parts of this object which are used on pages other
1821 * than the view page (e.g. in the navigation block, or when checking access on
1825 private function check_not_view_only() {
1826 if ($this->state
>= self
::STATE_DYNAMIC
) {
1827 throw new coding_exception('Cannot set this data from _cm_info_view because it may ' .
1828 'affect other pages as well as view');
1833 * Constructor should not be called directly; use {@link get_fast_modinfo()}
1835 * @param course_modinfo $modinfo Parent object
1836 * @param stdClass $notused1 Argument not used
1837 * @param stdClass $mod Module object from the modinfo field of course table
1838 * @param stdClass $notused2 Argument not used
1840 public function __construct(course_modinfo
$modinfo, $notused1, $mod, $notused2) {
1841 $this->modinfo
= $modinfo;
1843 $this->id
= $mod->cm
;
1844 $this->instance
= $mod->id
;
1845 $this->modname
= $mod->mod
;
1846 $this->idnumber
= isset($mod->idnumber
) ?
$mod->idnumber
: '';
1847 $this->name
= $mod->name
;
1848 $this->visible
= $mod->visible
;
1849 $this->visibleoncoursepage
= $mod->visibleoncoursepage
;
1850 $this->sectionnum
= $mod->section
; // Note weirdness with name here
1851 $this->groupmode
= isset($mod->groupmode
) ?
$mod->groupmode
: 0;
1852 $this->groupingid
= isset($mod->groupingid
) ?
$mod->groupingid
: 0;
1853 $this->indent
= isset($mod->indent
) ?
$mod->indent
: 0;
1854 $this->extra
= isset($mod->extra
) ?
$mod->extra
: '';
1855 $this->extraclasses
= isset($mod->extraclasses
) ?
$mod->extraclasses
: '';
1856 // iconurl may be stored as either string or instance of moodle_url.
1857 $this->iconurl
= isset($mod->iconurl
) ?
new moodle_url($mod->iconurl
) : '';
1858 $this->onclick
= isset($mod->onclick
) ?
$mod->onclick
: '';
1859 $this->content
= isset($mod->content
) ?
$mod->content
: '';
1860 $this->icon
= isset($mod->icon
) ?
$mod->icon
: '';
1861 $this->iconcomponent
= isset($mod->iconcomponent
) ?
$mod->iconcomponent
: '';
1862 $this->customdata
= isset($mod->customdata
) ?
$mod->customdata
: '';
1863 $this->showdescription
= isset($mod->showdescription
) ?
$mod->showdescription
: 0;
1864 $this->state
= self
::STATE_BASIC
;
1866 $this->section
= isset($mod->sectionid
) ?
$mod->sectionid
: 0;
1867 $this->module
= isset($mod->module
) ?
$mod->module
: 0;
1868 $this->added
= isset($mod->added
) ?
$mod->added
: 0;
1869 $this->score
= isset($mod->score
) ?
$mod->score
: 0;
1870 $this->visibleold
= isset($mod->visibleold
) ?
$mod->visibleold
: 0;
1871 $this->deletioninprogress
= isset($mod->deletioninprogress
) ?
$mod->deletioninprogress
: 0;
1873 // Note: it saves effort and database space to always include the
1874 // availability and completion fields, even if availability or completion
1875 // are actually disabled
1876 $this->completion
= isset($mod->completion
) ?
$mod->completion
: 0;
1877 $this->completionpassgrade
= isset($mod->completionpassgrade
) ?
$mod->completionpassgrade
: 0;
1878 $this->completiongradeitemnumber
= isset($mod->completiongradeitemnumber
)
1879 ?
$mod->completiongradeitemnumber
: null;
1880 $this->completionview
= isset($mod->completionview
)
1881 ?
$mod->completionview
: 0;
1882 $this->completionexpected
= isset($mod->completionexpected
)
1883 ?
$mod->completionexpected
: 0;
1884 $this->availability
= isset($mod->availability
) ?
$mod->availability
: null;
1885 $this->conditionscompletion
= isset($mod->conditionscompletion
)
1886 ?
$mod->conditionscompletion
: array();
1887 $this->conditionsgrade
= isset($mod->conditionsgrade
)
1888 ?
$mod->conditionsgrade
: array();
1889 $this->conditionsfield
= isset($mod->conditionsfield
)
1890 ?
$mod->conditionsfield
: array();
1892 static $modviews = array();
1893 if (!isset($modviews[$this->modname
])) {
1894 $modviews[$this->modname
] = !plugin_supports('mod', $this->modname
,
1895 FEATURE_NO_VIEW_LINK
);
1897 $this->url
= $modviews[$this->modname
]
1898 ?
new moodle_url('/mod/' . $this->modname
. '/view.php', array('id'=>$this->id
))
1903 * Creates a cm_info object from a database record (also accepts cm_info
1904 * in which case it is just returned unchanged).
1906 * @param stdClass|cm_info|null|bool $cm Stdclass or cm_info (or null or false)
1907 * @param int $userid Optional userid (default to current)
1908 * @return cm_info|null Object as cm_info, or null if input was null/false
1910 public static function create($cm, $userid = 0) {
1911 // Null, false, etc. gets passed through as null.
1915 // If it is already a cm_info object, just return it.
1916 if ($cm instanceof cm_info
) {
1919 // Otherwise load modinfo.
1920 if (empty($cm->id
) ||
empty($cm->course
)) {
1921 throw new coding_exception('$cm must contain ->id and ->course');
1923 $modinfo = get_fast_modinfo($cm->course
, $userid);
1924 return $modinfo->get_cm($cm->id
);
1928 * If dynamic data for this course-module is not yet available, gets it.
1930 * This function is automatically called when requesting any course_modinfo property
1931 * that can be modified by modules (have a set_xxx method).
1933 * Dynamic data is data which does not come directly from the cache but is calculated at
1934 * runtime based on the current user. Primarily this concerns whether the user can access
1935 * the module or not.
1937 * As part of this function, the module's _cm_info_dynamic function from its lib.php will
1938 * be called (if it exists). Make sure that the functions that are called here do not use
1939 * any getter magic method from cm_info.
1942 private function obtain_dynamic_data() {
1944 $userid = $this->modinfo
->get_user_id();
1945 if ($this->state
>= self
::STATE_BUILDING_DYNAMIC ||
$userid == -1) {
1948 $this->state
= self
::STATE_BUILDING_DYNAMIC
;
1950 if (!empty($CFG->enableavailability
)) {
1951 // Get availability information.
1952 $ci = new \core_availability\
info_module($this);
1954 // Note that the modinfo currently available only includes minimal details (basic data)
1955 // but we know that this function does not need anything more than basic data.
1956 $this->available
= $ci->is_available($this->availableinfo
, true,
1957 $userid, $this->modinfo
);
1959 $this->available
= true;
1962 // Check parent section.
1963 if ($this->available
) {
1964 $parentsection = $this->modinfo
->get_section_info($this->sectionnum
);
1965 if (!$parentsection->get_available()) {
1966 // Do not store info from section here, as that is already
1967 // presented from the section (if appropriate) - just change
1969 $this->available
= false;
1973 // Update visible state for current user.
1974 $this->update_user_visible();
1976 // Let module make dynamic changes at this point
1977 $this->call_mod_function('cm_info_dynamic');
1978 $this->state
= self
::STATE_DYNAMIC
;
1982 * Getter method for property $uservisible, ensures that dynamic data is retrieved.
1984 * This method is normally called by the property ->uservisible, but can be called directly if
1985 * there is a case when it might be called recursively (you can't call property values
1990 public function get_user_visible() {
1991 $this->obtain_dynamic_data();
1992 return $this->uservisible
;
1996 * Returns whether this module is visible to the current user on course page
1998 * Activity may be visible on the course page but not available, for example
1999 * when it is hidden conditionally but the condition information is displayed.
2003 public function is_visible_on_course_page() {
2004 $this->obtain_dynamic_data();
2005 return $this->uservisibleoncoursepage
;
2009 * Whether this module is available but hidden from course page
2011 * "Stealth" modules are the ones that are not shown on course page but available by following url.
2012 * They are normally also displayed in grade reports and other reports.
2013 * Module will be stealth either if visibleoncoursepage=0 or it is a visible module inside the hidden
2018 public function is_stealth() {
2019 return !$this->visibleoncoursepage ||
2020 ($this->visible
&& ($section = $this->get_section_info()) && !$section->visible
);
2024 * Getter method for property $available, ensures that dynamic data is retrieved
2027 private function get_available() {
2028 $this->obtain_dynamic_data();
2029 return $this->available
;
2033 * This method can not be used anymore.
2035 * @see \core_availability\info_module::filter_user_list()
2036 * @deprecated Since Moodle 2.8
2038 private function get_deprecated_group_members_only() {
2039 throw new coding_exception('$cm->groupmembersonly can not be used anymore. ' .
2040 'If used to restrict a list of enrolled users to only those who can ' .
2041 'access the module, consider \core_availability\info_module::filter_user_list.');
2045 * Getter method for property $availableinfo, ensures that dynamic data is retrieved
2047 * @return string Available info (HTML)
2049 private function get_available_info() {
2050 $this->obtain_dynamic_data();
2051 return $this->availableinfo
;
2055 * Works out whether activity is available to the current user
2057 * If the activity is unavailable, additional checks are required to determine if its hidden or greyed out
2061 private function update_user_visible() {
2062 $userid = $this->modinfo
->get_user_id();
2063 if ($userid == -1) {
2066 $this->uservisible
= true;
2068 // If the module is being deleted, set the uservisible state to false and return.
2069 if ($this->deletioninprogress
) {
2070 $this->uservisible
= false;
2074 // If the user cannot access the activity set the uservisible flag to false.
2075 // Additional checks are required to determine whether the activity is entirely hidden or just greyed out.
2076 if ((!$this->visible
&& !has_capability('moodle/course:viewhiddenactivities', $this->get_context(), $userid)) ||
2077 (!$this->get_available() &&
2078 !has_capability('moodle/course:ignoreavailabilityrestrictions', $this->get_context(), $userid))) {
2080 $this->uservisible
= false;
2083 // Check group membership.
2084 if ($this->is_user_access_restricted_by_capability()) {
2086 $this->uservisible
= false;
2087 // Ensure activity is completely hidden from the user.
2088 $this->availableinfo
= '';
2091 $this->uservisibleoncoursepage
= $this->uservisible
&&
2092 ($this->visibleoncoursepage ||
2093 has_capability('moodle/course:manageactivities', $this->get_context(), $userid) ||
2094 has_capability('moodle/course:activityvisibility', $this->get_context(), $userid));
2095 // Activity that is not available, not hidden from course page and has availability
2096 // info is actually visible on the course page (with availability info and without a link).
2097 if (!$this->uservisible
&& $this->visibleoncoursepage
&& $this->availableinfo
) {
2098 $this->uservisibleoncoursepage
= true;
2103 * This method has been deprecated and should not be used.
2106 * @deprecated Since Moodle 2.8
2108 public function is_user_access_restricted_by_group() {
2109 throw new coding_exception('cm_info::is_user_access_restricted_by_group() can not be used any more.' .
2110 ' Use $cm->uservisible to decide whether the current user can access an activity.');
2114 * Checks whether mod/...:view capability restricts the current user's access.
2116 * @return bool True if the user access is restricted.
2118 public function is_user_access_restricted_by_capability() {
2119 $userid = $this->modinfo
->get_user_id();
2120 if ($userid == -1) {
2123 $capability = 'mod/' . $this->modname
. ':view';
2124 $capabilityinfo = get_capability_info($capability);
2125 if (!$capabilityinfo) {
2126 // Capability does not exist, no one is prevented from seeing the activity.
2130 // You are blocked if you don't have the capability.
2131 return !has_capability($capability, $this->get_context(), $userid);
2135 * Checks whether the module's conditional access settings mean that the
2136 * user cannot see the activity at all
2138 * @deprecated since 2.7 MDL-44070
2140 public function is_user_access_restricted_by_conditional_access() {
2141 throw new coding_exception('cm_info::is_user_access_restricted_by_conditional_access() ' .
2142 'can not be used any more; this function is not needed (use $cm->uservisible ' .
2143 'and $cm->availableinfo to decide whether it should be available ' .
2148 * Calls a module function (if exists), passing in one parameter: this object.
2149 * @param string $type Name of function e.g. if this is 'grooblezorb' and the modname is
2150 * 'forum' then it will try to call 'mod_forum_grooblezorb' or 'forum_grooblezorb'
2153 private function call_mod_function($type) {
2155 $libfile = $CFG->dirroot
. '/mod/' . $this->modname
. '/lib.php';
2156 if (file_exists($libfile)) {
2157 include_once($libfile);
2158 $function = 'mod_' . $this->modname
. '_' . $type;
2159 if (function_exists($function)) {
2162 $function = $this->modname
. '_' . $type;
2163 if (function_exists($function)) {
2171 * If view data for this course-module is not yet available, obtains it.
2173 * This function is automatically called if any of the functions (marked) which require
2174 * view data are called.
2176 * View data is data which is needed only for displaying the course main page (& any similar
2177 * functionality on other pages) but is not needed in general. Obtaining view data may have
2178 * a performance cost.
2180 * As part of this function, the module's _cm_info_view function from its lib.php will
2181 * be called (if it exists).
2184 private function obtain_view_data() {
2185 if ($this->state
>= self
::STATE_BUILDING_VIEW ||
$this->modinfo
->get_user_id() == -1) {
2188 $this->obtain_dynamic_data();
2189 $this->state
= self
::STATE_BUILDING_VIEW
;
2191 // Let module make changes at this point
2192 $this->call_mod_function('cm_info_view');
2193 $this->state
= self
::STATE_VIEW
;
2199 * Returns reference to full info about modules in course (including visibility).
2200 * Cached and as fast as possible (0 or 1 db query).
2202 * use get_fast_modinfo($courseid, 0, true) to reset the static cache for particular course
2203 * use get_fast_modinfo(0, 0, true) to reset the static cache for all courses
2205 * use rebuild_course_cache($courseid, true) to reset the application AND static cache
2206 * for particular course when it's contents has changed
2208 * @param int|stdClass $courseorid object from DB table 'course' (must have field 'id'
2209 * and recommended to have field 'cacherev') or just a course id. Just course id
2210 * is enough when calling get_fast_modinfo() for current course or site or when
2211 * calling for any other course for the second time.
2212 * @param int $userid User id to populate 'availble' and 'uservisible' attributes of modules and sections.
2213 * Set to 0 for current user (default). Set to -1 to avoid calculation of dynamic user-depended data.
2214 * @param bool $resetonly whether we want to get modinfo or just reset the cache
2215 * @return course_modinfo|null Module information for course, or null if resetting
2216 * @throws moodle_exception when course is not found (nothing is thrown if resetting)
2218 function get_fast_modinfo($courseorid, $userid = 0, $resetonly = false) {
2219 // compartibility with syntax prior to 2.4:
2220 if ($courseorid === 'reset') {
2221 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
);
2226 // Function get_fast_modinfo() can never be called during upgrade unless it is used for clearing cache only.
2228 upgrade_ensure_not_running();
2231 // Function is called with $reset = true
2233 course_modinfo
::clear_instance_cache($courseorid);
2237 // Function is called with $reset = false, retrieve modinfo
2238 return course_modinfo
::instance($courseorid, $userid);
2242 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2243 * a cmid. If module name is also provided, it will ensure the cm is of that type.
2246 * list($course, $cm) = get_course_and_cm_from_cmid($cmid, 'forum');
2248 * Using this method has a performance advantage because it works by loading
2249 * modinfo for the course - which will then be cached and it is needed later
2250 * in most requests. It also guarantees that the $cm object is a cm_info and
2253 * The $course object can be supplied if already known and will speed
2254 * up this function - although it is more efficient to use this function to
2255 * get the course if you are starting from a cmid.
2257 * To avoid security problems and obscure bugs, you should always specify
2258 * $modulename if the cmid value came from user input.
2260 * By default this obtains information (for example, whether user can access
2261 * the activity) for current user, but you can specify a userid if required.
2263 * @param stdClass|int $cmorid Id of course-module, or database object
2264 * @param string $modulename Optional modulename (improves security)
2265 * @param stdClass|int $courseorid Optional course object if already loaded
2266 * @param int $userid Optional userid (default = current)
2267 * @return array Array with 2 elements $course and $cm
2268 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2270 function get_course_and_cm_from_cmid($cmorid, $modulename = '', $courseorid = 0, $userid = 0) {
2272 if (is_object($cmorid)) {
2273 $cmid = $cmorid->id
;
2274 if (isset($cmorid->course
)) {
2275 $courseid = (int)$cmorid->course
;
2280 $cmid = (int)$cmorid;
2284 // Validate module name if supplied.
2285 if ($modulename && !core_component
::is_valid_plugin_name('mod', $modulename)) {
2286 throw new coding_exception('Invalid modulename parameter');
2289 // Get course from last parameter if supplied.
2291 if (is_object($courseorid)) {
2292 $course = $courseorid;
2293 } else if ($courseorid) {
2294 $courseid = (int)$courseorid;
2299 // If course ID is known, get it using normal function.
2300 $course = get_course($courseid);
2302 // Get course record in a single query based on cmid.
2303 $course = $DB->get_record_sql("
2305 FROM {course_modules} cm
2306 JOIN {course} c ON c.id = cm.course
2307 WHERE cm.id = ?", array($cmid), MUST_EXIST
);
2311 // Get cm from get_fast_modinfo.
2312 $modinfo = get_fast_modinfo($course, $userid);
2313 $cm = $modinfo->get_cm($cmid);
2314 if ($modulename && $cm->modname
!== $modulename) {
2315 throw new moodle_exception('invalidcoursemodule', 'error');
2317 return array($course, $cm);
2321 * Efficiently retrieves the $course (stdclass) and $cm (cm_info) objects, given
2322 * an instance id or record and module name.
2325 * list($course, $cm) = get_course_and_cm_from_instance($forum, 'forum');
2327 * Using this method has a performance advantage because it works by loading
2328 * modinfo for the course - which will then be cached and it is needed later
2329 * in most requests. It also guarantees that the $cm object is a cm_info and
2332 * The $course object can be supplied if already known and will speed
2333 * up this function - although it is more efficient to use this function to
2334 * get the course if you are starting from an instance id.
2336 * By default this obtains information (for example, whether user can access
2337 * the activity) for current user, but you can specify a userid if required.
2339 * @param stdclass|int $instanceorid Id of module instance, or database object
2340 * @param string $modulename Modulename (required)
2341 * @param stdClass|int $courseorid Optional course object if already loaded
2342 * @param int $userid Optional userid (default = current)
2343 * @return array Array with 2 elements $course and $cm
2344 * @throws moodle_exception If the item doesn't exist or is of wrong module name
2346 function get_course_and_cm_from_instance($instanceorid, $modulename, $courseorid = 0, $userid = 0) {
2349 // Get data from parameter.
2350 if (is_object($instanceorid)) {
2351 $instanceid = $instanceorid->id
;
2352 if (isset($instanceorid->course
)) {
2353 $courseid = (int)$instanceorid->course
;
2358 $instanceid = (int)$instanceorid;
2362 // Get course from last parameter if supplied.
2364 if (is_object($courseorid)) {
2365 $course = $courseorid;
2366 } else if ($courseorid) {
2367 $courseid = (int)$courseorid;
2370 // Validate module name if supplied.
2371 if (!core_component
::is_valid_plugin_name('mod', $modulename)) {
2372 throw new coding_exception('Invalid modulename parameter');
2377 // If course ID is known, get it using normal function.
2378 $course = get_course($courseid);
2380 // Get course record in a single query based on instance id.
2381 $pagetable = '{' . $modulename . '}';
2382 $course = $DB->get_record_sql("
2384 FROM $pagetable instance
2385 JOIN {course} c ON c.id = instance.course
2386 WHERE instance.id = ?", array($instanceid), MUST_EXIST
);
2390 // Get cm from get_fast_modinfo.
2391 $modinfo = get_fast_modinfo($course, $userid);
2392 $instances = $modinfo->get_instances_of($modulename);
2393 if (!array_key_exists($instanceid, $instances)) {
2394 throw new moodle_exception('invalidmoduleid', 'error', $instanceid);
2396 return array($course, $instances[$instanceid]);
2401 * Rebuilds or resets the cached list of course activities stored in MUC.
2403 * rebuild_course_cache() must NEVER be called from lib/db/upgrade.php.
2404 * At the same time course cache may ONLY be cleared using this function in
2405 * upgrade scripts of plugins.
2407 * During the bulk operations if it is necessary to reset cache of multiple
2408 * courses it is enough to call {@link increment_revision_number()} for the
2409 * table 'course' and field 'cacherev' specifying affected courses in select.
2411 * Cached course information is stored in MUC core/coursemodinfo and is
2412 * validated with the DB field {course}.cacherev
2414 * @global moodle_database $DB
2415 * @param int $courseid id of course to rebuild, empty means all
2416 * @param boolean $clearonly only clear the cache, gets rebuild automatically on the fly.
2417 * Recommended to set to true to avoid unnecessary multiple rebuilding.
2419 function rebuild_course_cache($courseid=0, $clearonly=false) {
2420 global $COURSE, $SITE, $DB, $CFG;
2422 // Function rebuild_course_cache() can not be called during upgrade unless it's clear only.
2423 if (!$clearonly && !upgrade_ensure_not_running(true)) {
2427 // Destroy navigation caches
2428 navigation_cache
::destroy_volatile_caches();
2430 core_courseformat\base
::reset_course_cache($courseid);
2432 $cachecoursemodinfo = cache
::make('core', 'coursemodinfo');
2433 if (empty($courseid)) {
2434 // Clearing caches for all courses.
2435 increment_revision_number('course', 'cacherev', '');
2436 $cachecoursemodinfo->purge();
2437 course_modinfo
::clear_instance_cache();
2438 // Update global values too.
2439 $sitecacherev = $DB->get_field('course', 'cacherev', array('id' => SITEID
));
2440 $SITE->cachrev
= $sitecacherev;
2441 if ($COURSE->id
== SITEID
) {
2442 $COURSE->cacherev
= $sitecacherev;
2444 $COURSE->cacherev
= $DB->get_field('course', 'cacherev', array('id' => $COURSE->id
));
2447 // Clearing cache for one course, make sure it is deleted from user request cache as well.
2448 increment_revision_number('course', 'cacherev', 'id = :id', array('id' => $courseid));
2449 $cachecoursemodinfo->delete($courseid);
2450 course_modinfo
::clear_instance_cache($courseid);
2451 // Update global values too.
2452 if ($courseid == $COURSE->id ||
$courseid == $SITE->id
) {
2453 $cacherev = $DB->get_field('course', 'cacherev', array('id' => $courseid));
2454 if ($courseid == $COURSE->id
) {
2455 $COURSE->cacherev
= $cacherev;
2457 if ($courseid == $SITE->id
) {
2458 $SITE->cachrev
= $cacherev;
2468 $select = array('id'=>$courseid);
2471 core_php_time_limit
::raise(); // this could take a while! MDL-10954
2474 $rs = $DB->get_recordset("course", $select,'','id,'.join(',', course_modinfo
::$cachedfields));
2475 // Rebuild cache for each course.
2476 foreach ($rs as $course) {
2477 course_modinfo
::build_course_cache($course);
2484 * Class that is the return value for the _get_coursemodule_info module API function.
2486 * Note: For backward compatibility, you can also return a stdclass object from that function.
2487 * The difference is that the stdclass object may contain an 'extra' field (deprecated,
2488 * use extraclasses and onclick instead). The stdclass object may not contain
2489 * the new fields defined here (content, extraclasses, customdata).
2491 class cached_cm_info
{
2493 * Name (text of link) for this activity; Leave unset to accept default name
2499 * Name of icon for this activity. Normally, this should be used together with $iconcomponent
2500 * to define the icon, as per image_url function.
2501 * For backward compatibility, if this value is of the form 'mod/forum/icon' then an icon
2502 * within that module will be used.
2503 * @see cm_info::get_icon_url()
2504 * @see renderer_base::image_url()
2510 * Component for icon for this activity, as per image_url; leave blank to use default 'moodle'
2512 * @see renderer_base::image_url()
2515 public $iconcomponent;
2518 * HTML content to be displayed on the main page below the link (if any) for this course-module
2524 * Custom data to be stored in modinfo for this activity; useful if there are cases when
2525 * internal information for this activity type needs to be accessible from elsewhere on the
2526 * course without making database queries. May be of any type but should be short.
2532 * Extra CSS class or classes to be added when this activity is displayed on the main page;
2533 * space-separated string
2536 public $extraclasses;
2539 * External URL image to be used by activity as icon, useful for some external-tool modules
2540 * like lti. If set, takes precedence over $icon and $iconcomponent
2546 * Content of onclick JavaScript; escaped HTML to be inserted as attribute value
2554 * Data about a single section on a course. This contains the fields from the
2555 * course_sections table, plus additional data when required.
2557 * @property-read int $id Section ID - from course_sections table
2558 * @property-read int $course Course ID - from course_sections table
2559 * @property-read int $section Section number - from course_sections table
2560 * @property-read string $name Section name if specified - from course_sections table
2561 * @property-read int $visible Section visibility (1 = visible) - from course_sections table
2562 * @property-read string $summary Section summary text if specified - from course_sections table
2563 * @property-read int $summaryformat Section summary text format (FORMAT_xx constant) - from course_sections table
2564 * @property-read string $availability Availability information as JSON string -
2565 * from course_sections table
2566 * @property-read array $conditionscompletion Availability conditions for this section based on the completion of
2567 * course-modules (array from course-module id to required completion state
2568 * for that module) - from cached data in sectioncache field
2569 * @property-read array $conditionsgrade Availability conditions for this section based on course grades (array from
2570 * grade item id to object with ->min, ->max fields) - from cached data in
2571 * sectioncache field
2572 * @property-read array $conditionsfield Availability conditions for this section based on user fields
2573 * @property-read bool $available True if this section is available to the given user i.e. if all availability conditions
2574 * are met - obtained dynamically
2575 * @property-read string $availableinfo If section is not available to some users, this string gives information about
2576 * availability which can be displayed to students and/or staff (e.g. 'Available from 3 January 2010')
2577 * for display on main page - obtained dynamically
2578 * @property-read bool $uservisible True if this section is available to the given user (for example, if current user
2579 * has viewhiddensections capability, they can access the section even if it is not
2580 * visible or not available, so this would be true in that case) - obtained dynamically
2581 * @property-read string $sequence Comma-separated list of all modules in the section. Note, this field may not exactly
2582 * match course_sections.sequence if later has references to non-existing modules or not modules of not available module types.
2583 * @property-read course_modinfo $modinfo
2585 class section_info
implements IteratorAggregate
{
2587 * Section ID - from course_sections table
2593 * Section number - from course_sections table
2599 * Section name if specified - from course_sections table
2605 * Section visibility (1 = visible) - from course_sections table
2611 * Section summary text if specified - from course_sections table
2617 * Section summary text format (FORMAT_xx constant) - from course_sections table
2620 private $_summaryformat;
2623 * Availability information as JSON string - from course_sections table
2626 private $_availability;
2629 * Availability conditions for this section based on the completion of
2630 * course-modules (array from course-module id to required completion state
2631 * for that module) - from cached data in sectioncache field
2634 private $_conditionscompletion;
2637 * Availability conditions for this section based on course grades (array from
2638 * grade item id to object with ->min, ->max fields) - from cached data in
2639 * sectioncache field
2642 private $_conditionsgrade;
2645 * Availability conditions for this section based on user fields
2648 private $_conditionsfield;
2651 * True if this section is available to students i.e. if all availability conditions
2652 * are met - obtained dynamically on request, see function {@link section_info::get_available()}
2655 private $_available;
2658 * If section is not available to some users, this string gives information about
2659 * availability which can be displayed to students and/or staff (e.g. 'Available from 3
2660 * January 2010') for display on main page - obtained dynamically on request, see
2661 * function {@link section_info::get_availableinfo()}
2664 private $_availableinfo;
2667 * True if this section is available to the CURRENT user (for example, if current user
2668 * has viewhiddensections capability, they can access the section even if it is not
2669 * visible or not available, so this would be true in that case) - obtained dynamically
2670 * on request, see function {@link section_info::get_uservisible()}
2673 private $_uservisible;
2676 * Default values for sectioncache fields; if a field has this value, it won't
2677 * be stored in the sectioncache cache, to save space. Checks are done by ===
2678 * which means values must all be strings.
2681 private static $sectioncachedefaults = array(
2684 'summaryformat' => '1', // FORMAT_HTML, but must be a string
2686 'availability' => null
2690 * Stores format options that have been cached when building 'coursecache'
2691 * When the format option is requested we look first if it has been cached
2694 private $cachedformatoptions = array();
2697 * Stores the list of all possible section options defined in each used course format.
2700 static private $sectionformatoptions = array();
2703 * Stores the modinfo object passed in constructor, may be used when requesting
2704 * dynamically obtained attributes such as available, availableinfo, uservisible.
2705 * Also used to retrun information about current course or user.
2706 * @var course_modinfo
2711 * Constructs object from database information plus extra required data.
2712 * @param object $data Array entry from cached sectioncache
2713 * @param int $number Section number (array key)
2714 * @param int $notused1 argument not used (informaion is available in $modinfo)
2715 * @param int $notused2 argument not used (informaion is available in $modinfo)
2716 * @param course_modinfo $modinfo Owner (needed for checking availability)
2717 * @param int $notused3 argument not used (informaion is available in $modinfo)
2719 public function __construct($data, $number, $notused1, $notused2, $modinfo, $notused3) {
2721 require_once($CFG->dirroot
.'/course/lib.php');
2723 // Data that is always present
2724 $this->_id
= $data->id
;
2726 $defaults = self
::$sectioncachedefaults +
2727 array('conditionscompletion' => array(),
2728 'conditionsgrade' => array(),
2729 'conditionsfield' => array());
2731 // Data that may use default values to save cache size
2732 foreach ($defaults as $field => $value) {
2733 if (isset($data->{$field})) {
2734 $this->{'_'.$field} = $data->{$field};
2736 $this->{'_'.$field} = $value;
2740 // Other data from constructor arguments.
2741 $this->_section
= $number;
2742 $this->modinfo
= $modinfo;
2744 // Cached course format data.
2745 $course = $modinfo->get_course();
2746 if (!isset(self
::$sectionformatoptions[$course->format
])) {
2747 // Store list of section format options defined in each used course format.
2748 // They do not depend on particular course but only on its format.
2749 self
::$sectionformatoptions[$course->format
] =
2750 course_get_format($course)->section_format_options();
2752 foreach (self
::$sectionformatoptions[$course->format
] as $field => $option) {
2753 if (!empty($option['cache'])) {
2754 if (isset($data->{$field})) {
2755 $this->cachedformatoptions
[$field] = $data->{$field};
2756 } else if (array_key_exists('cachedefault', $option)) {
2757 $this->cachedformatoptions
[$field] = $option['cachedefault'];
2764 * Magic method to check if the property is set
2766 * @param string $name name of the property
2769 public function __isset($name) {
2770 if (method_exists($this, 'get_'.$name) ||
2771 property_exists($this, '_'.$name) ||
2772 array_key_exists($name, self
::$sectionformatoptions[$this->modinfo
->get_course()->format
])) {
2773 $value = $this->__get($name);
2774 return isset($value);
2780 * Magic method to check if the property is empty
2782 * @param string $name name of the property
2785 public function __empty($name) {
2786 if (method_exists($this, 'get_'.$name) ||
2787 property_exists($this, '_'.$name) ||
2788 array_key_exists($name, self
::$sectionformatoptions[$this->modinfo
->get_course()->format
])) {
2789 $value = $this->__get($name);
2790 return empty($value);
2796 * Magic method to retrieve the property, this is either basic section property
2797 * or availability information or additional properties added by course format
2799 * @param string $name name of the property
2802 public function __get($name) {
2803 if (method_exists($this, 'get_'.$name)) {
2804 return $this->{'get_'.$name}();
2806 if (property_exists($this, '_'.$name)) {
2807 return $this->{'_'.$name};
2809 if (array_key_exists($name, $this->cachedformatoptions
)) {
2810 return $this->cachedformatoptions
[$name];
2812 // precheck if the option is defined in format to avoid unnecessary DB queries in get_format_options()
2813 if (array_key_exists($name, self
::$sectionformatoptions[$this->modinfo
->get_course()->format
])) {
2814 $formatoptions = course_get_format($this->modinfo
->get_course())->get_format_options($this);
2815 return $formatoptions[$name];
2817 debugging('Invalid section_info property accessed! '.$name);
2822 * Finds whether this section is available at the moment for the current user.
2824 * The value can be accessed publicly as $sectioninfo->available, but can be called directly if there
2825 * is a case when it might be called recursively (you can't call property values recursively).
2829 public function get_available() {
2831 $userid = $this->modinfo
->get_user_id();
2832 if ($this->_available
!== null ||
$userid == -1) {
2833 // Has already been calculated or does not need calculation.
2834 return $this->_available
;
2836 $this->_available
= true;
2837 $this->_availableinfo
= '';
2838 if (!empty($CFG->enableavailability
)) {
2839 // Get availability information.
2840 $ci = new \core_availability\
info_section($this);
2841 $this->_available
= $ci->is_available($this->_availableinfo
, true,
2842 $userid, $this->modinfo
);
2844 // Execute the hook from the course format that may override the available/availableinfo properties.
2845 $currentavailable = $this->_available
;
2846 course_get_format($this->modinfo
->get_course())->
2847 section_get_available_hook($this, $this->_available
, $this->_availableinfo
);
2848 if (!$currentavailable && $this->_available
) {
2849 debugging('section_get_available_hook() can not make unavailable section available', DEBUG_DEVELOPER
);
2850 $this->_available
= $currentavailable;
2852 return $this->_available
;
2856 * Returns the availability text shown next to the section on course page.
2860 private function get_availableinfo() {
2861 // Calling get_available() will also fill the availableinfo property
2862 // (or leave it null if there is no userid).
2863 $this->get_available();
2864 return $this->_availableinfo
;
2868 * Implementation of IteratorAggregate::getIterator(), allows to cycle through properties
2869 * and use {@link convert_to_array()}
2871 * @return ArrayIterator
2873 public function getIterator() {
2875 foreach (get_object_vars($this) as $key => $value) {
2876 if (substr($key, 0, 1) == '_') {
2877 if (method_exists($this, 'get'.$key)) {
2878 $ret[substr($key, 1)] = $this->{'get'.$key}();
2880 $ret[substr($key, 1)] = $this->$key;
2884 $ret['sequence'] = $this->get_sequence();
2885 $ret['course'] = $this->get_course();
2886 $ret = array_merge($ret, course_get_format($this->modinfo
->get_course())->get_format_options($this->_section
));
2887 return new ArrayIterator($ret);
2891 * Works out whether activity is visible *for current user* - if this is false, they
2892 * aren't allowed to access it.
2896 private function get_uservisible() {
2897 $userid = $this->modinfo
->get_user_id();
2898 if ($this->_uservisible
!== null ||
$userid == -1) {
2899 // Has already been calculated or does not need calculation.
2900 return $this->_uservisible
;
2902 $this->_uservisible
= true;
2903 if (!$this->_visible ||
!$this->get_available()) {
2904 $coursecontext = context_course
::instance($this->get_course());
2905 if (!$this->_visible
&& !has_capability('moodle/course:viewhiddensections', $coursecontext, $userid) ||
2906 (!$this->get_available() &&
2907 !has_capability('moodle/course:ignoreavailabilityrestrictions', $coursecontext, $userid))) {
2909 $this->_uservisible
= false;
2912 return $this->_uservisible
;
2916 * Restores the course_sections.sequence value
2920 private function get_sequence() {
2921 if (!empty($this->modinfo
->sections
[$this->_section
])) {
2922 return implode(',', $this->modinfo
->sections
[$this->_section
]);
2929 * Returns course ID - from course_sections table
2933 private function get_course() {
2934 return $this->modinfo
->get_course_id();
2940 * @return course_modinfo
2942 private function get_modinfo() {
2943 return $this->modinfo
;
2947 * Prepares section data for inclusion in sectioncache cache, removing items
2948 * that are set to defaults, and adding availability data if required.
2950 * Called by build_section_cache in course_modinfo only; do not use otherwise.
2951 * @param object $section Raw section data object
2953 public static function convert_for_section_cache($section) {
2956 // Course id stored in course table
2957 unset($section->course
);
2958 // Section number stored in array key
2959 unset($section->section
);
2960 // Sequence stored implicity in modinfo $sections array
2961 unset($section->sequence
);
2963 // Remove default data
2964 foreach (self
::$sectioncachedefaults as $field => $value) {
2965 // Exact compare as strings to avoid problems if some strings are set
2967 if (isset($section->{$field}) && $section->{$field} === $value) {
2968 unset($section->{$field});