Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
|
Interface to apply to all the classes we want to calculate their checksum. More...
Public Member Functions | |
calculate_checksum () | |
This function will return one unique and stable checksum for one instance of the class implementing it. | |
is_checksum_correct ($checksum) | |
Given one checksum, returns if matches object's checksum (true) or no (false) | |
Interface to apply to all the classes we want to calculate their checksum.
Each class being part of @backup_controller will implement this interface in order to be able to calculate one objective and unique checksum for the whole controller class.
TODO: Finish phpdocs
checksumable::calculate_checksum | ( | ) |
This function will return one unique and stable checksum for one instance of the class implementing it.
It's each implementation responsibility to do it recursively if needed and use optional store (caching) of the checksum if necessary/possible
Implemented in backup_controller, backup_setting, base_logger, base_plan, base_task, and restore_controller.
checksumable::is_checksum_correct | ( | $checksum | ) |
Given one checksum, returns if matches object's checksum (true) or no (false)
Implemented in backup_controller, backup_setting, base_logger, base_plan, base_task, and restore_controller.