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.

Differences Between: [Versions 400 and 402] [Versions 400 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.

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

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

return: \stdClass