Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 311 and 402] [Versions 311 and 403]

Course module cm_info proxy.

Copyright: 2017 Cameron Ball <cameron@cameron1729.xyz>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 83 lines (3 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

cm_info_proxy:: (3 methods):
  __construct()
  get()
  get_proxied_instance()


Class: cm_info_proxy  - X-Ref

Course module stdClass proxy.

This implementation differs from the regular std_proxy in that it takes
a module name and instance instead of an id to construct the proxied class.

This is needed as the event table does not store the id of course modules
instead it stores the module name and instance.

__construct($modname, $instance, $courseid)   X-Ref
cm_info_proxy constructor.

param: string $modname The module name.
param: int $instance The module instance.
param: int $courseid course id this module belongs to

get($member)   X-Ref
Retrieve a member of the proxied class.

param: string $member The name of the member to retrieve
return: mixed The member.

get_proxied_instance()   X-Ref
Get the full instance of the proxied class.

return: \stdClass