Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.

Cache data source for the lesson overrides.

Copyright: 2021 Shamim Rezaie <shamim@moodle.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 110 lines (4 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

overrides:: (3 methods):
  get_instance_for_cache()
  load_for_cache()
  load_many_for_cache()


Class: overrides  - X-Ref

Class lesson_overrides

get_instance_for_cache(cache_definition $definition)   X-Ref
Returns an instance of the data source class that the cache can use for loading data using the other methods
specified by this interface.

return: object
param: cache_definition $definition

load_for_cache($key)   X-Ref
Loads the data for the key provided ready formatted for caching.

return: mixed What ever data should be returned, or false if it can't be loaded.
param: string|int $key The key to load.

load_many_for_cache(array $keys)   X-Ref
Loads several keys for the cache.

return: array An array of matching data items.
param: array $keys An array of keys each of which will be string|int.