Moodle APIs
3.8
Moodle 3.8.6 (Build: 20201109)
|
Abstract class defining the needed stuf for one backup task (a collection of steps) More...
Public Member Functions | |
__construct ($name, $plan=null) | |
Constructor - instantiates one object of this class. | |
add_result ($result) | |
Add the given info to the current plan's results. More... | |
add_step ($step) | |
build () | |
Function responsible for building the steps of any task (must set the $built property to true) | |
calculate_checksum () | |
This function will return one unique and stable checksum for one instance of the class implementing it. More... | |
destroy () | |
Destroy all circular references. More... | |
execute () | |
Function responsible for executing the steps of any task (setting the $executed property to true) | |
get_backupid () | |
get_basepath () | |
get_courseid () | |
get_logger () | |
get_name () | |
get_progress () | |
Gets the progress reporter, which can be used to report progress within the backup or restore process. More... | |
get_results () | |
Return the current plan's results. More... | |
get_setting ($name) | |
get_setting_value ($name) | |
get_settings () | |
get_steps () | |
get_taskbasepath () | |
get_weight () | |
Returns the weight of this task, an approximation of the amount of time it will take. More... | |
is_checksum_correct ($checksum) | |
Given one checksum, returns if matches object's checksum (true) or no (false) | |
is_excluding_activities () | |
log ($message, $level, $a=null, $depth=null, $display=false) | |
This function will be responsible for handling the params, and to call to the corresponding logger->process() once all modifications in params have been performed. | |
set_plan ($plan) | |
setting_exists ($name) | |
Protected Member Functions | |
add_setting ($setting) | |
define_settings () | |
This function is invoked on activity creation in order to add all the settings that are associated with one task. More... | |
Protected Attributes | |
$built | |
$executed | |
$name | |
$plan | |
$settings | |
$steps | |
Abstract class defining the needed stuf for one backup task (a collection of steps)
TODO: Finish phpdocs
|
inherited |
Add the given info to the current plan's results.
array | $result | associative array describing a result of a task/step |
|
inherited |
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
Implements checksumable.
|
abstractprotectedinherited |
This function is invoked on activity creation in order to add all the settings that are associated with one task.
The function will, directly, inject the settings in the task.
Reimplemented in restore_section_task, restore_root_task, restore_final_task, restore_course_task, restore_block_task, restore_activity_task, backup_section_task, backup_root_task, backup_final_task, backup_course_task, backup_block_task, and backup_activity_task.
|
inherited |
Destroy all circular references.
It helps PHP 5.2 a lot!
|
inherited |
Gets the progress reporter, which can be used to report progress within the backup or restore process.
core |
|
inherited |
Return the current plan's results.
array|null |
|
inherited |
Returns the weight of this task, an approximation of the amount of time it will take.
By default this value is 1. It can be increased for longer tasks.
int | Weight |
Reimplemented in backup_final_task.