Differences Between: [Versions 400 and 402]
(no description)
File Size: | 226 lines (7 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
stateupdates:: (14 methods):
__construct()
jsonSerialize()
add_course_put()
add_section_put()
add_section_create()
create_or_put_section()
add_section_delete()
add_section_remove()
add_cm_put()
add_cm_create()
create_or_put_cm()
add_cm_delete()
add_cm_remove()
add_update()
Class: stateupdates - X-Ref
Class to track state actions.__construct(course_format $format) X-Ref |
State update class constructor. param: course_format $format Course format. |
jsonSerialize() X-Ref |
Return the data to serialize the current track in JSON. return: stdClass the statement data structure |
add_course_put() X-Ref |
Add track about a general course state change. |
add_section_put(int $sectionid) X-Ref |
Add track about a section state put. param: int $sectionid The affected section id. |
add_section_create(int $sectionid) X-Ref |
Add track about a new section created. param: int $sectionid The affected section id. |
create_or_put_section(int $sectionid, string $action) X-Ref |
Add track about section created or put. param: int $sectionid The affected section id. param: string $action The action to track for the section ('create' or 'put'). |
add_section_delete(int $sectionid) X-Ref |
Add track about a section deleted. param: int $sectionid The affected section id. |
add_section_remove(int $sectionid) X-Ref |
Add track about a section removed. param: int $sectionid The affected section id. |
add_cm_put(int $cmid) X-Ref |
Add track about a course module state update. param: int $cmid the affected course module id |
add_cm_create(int $cmid) X-Ref |
Add track about a course module created. param: int $cmid the affected course module id |
create_or_put_cm(int $cmid, string $action) X-Ref |
Add track about section created or put. param: int $cmid The affected course module id. param: string $action The action to track for the section ('create' or 'put'). |
add_cm_delete(int $cmid) X-Ref |
Add track about a course module deleted. param: int $cmid the affected course module id |
add_cm_remove(int $cmid) X-Ref |
Add track about a course module removed. param: int $cmid the affected course module id |
add_update(string $name, string $action, stdClass $fields) X-Ref |
Add a valid update message to the update list. param: string $name the update name param: string $action the update action (usually update, create, remove) param: stdClass $fields the object fields |