| 
    Moodle APIs 3.9
    
   Moodle 3.9.13+ (Build: 20220325) 
   | 
 
Abstract class defining the basis for one execution (backup/restore) step. More...
  
Public Member Functions | |
| __construct ($name, $task=null) | |
| Constructor - instantiates one object of this class.  More... | |
| destroy () | |
| Destroy all circular references.  More... | |
| execute () | |
| This function will perform all the actions necessary to achieve the execution of the plan/part/task.  More... | |
| get_name () | |
| 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.  More... | |
| set_task ($task) | |
Protected Member Functions | |
| get_basepath () | |
| get_courseid () | |
| get_logger () | |
| get_setting ($name) | |
| get_setting_value ($name) | |
| get_settings () | |
| Protected API starts here.  | |
| setting_exists ($name) | |
Protected Attributes | |
| $name | |
| $task | |
Abstract class defining the basis for one execution (backup/restore) step.
TODO: Finish phpdocs
| base_step::__construct | ( | $name, | |
$task = null  | 
        |||
| ) | 
Constructor - instantiates one object of this class.
Reimplemented in backup_step, and restore_step.
| base_step::destroy | ( | ) | 
Destroy all circular references.
It helps PHP 5.2 a lot!
      
  | 
  inherited | 
This function will perform all the actions necessary to achieve the execution of the plan/part/task.
Implemented in backup_activity_task, backup_section_task, restore_activity_task, restore_section_task, backup_execution_step, backup_plan, backup_structure_step, base_plan, base_task, restore_execution_step, restore_plan, and restore_structure_step.
| base_step::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.
Implements loggable.