Moodle APIs 3.9
Moodle 3.9.13+ (Build: 20220325)
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
restore_glossary_random_block_task Class Reference

Specialised restore task for the glossary_random block (using execute_after_tasks for recoding of glossaryid) More...

Inheritance diagram for restore_glossary_random_block_task:
restore_block_task restore_task base_task checksumable executable loggable

Public Member Functions

 add_result ($result)
 Add the given info to the current plan's results. More...
 
 add_step ($step)
 
 after_restore ()
 This function, executed after all the tasks in the plan have been executed, will perform the recode of the target glossary for the block. More...
 
 build ()
 Create all the steps that will be part of this task. More...
 
 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) More...
 
 execute_after_restore ()
 If the task has been executed, launch its after_restore() method if available.
 
 get_basepath ()
 
 get_blockid ()
 
 get_blockname ()
 
 get_configdata_encoded_attributes ()
 Define one array() of configdata attributes that need to be decoded. More...
 
 get_contextid ()
 
 get_courseid ()
 
 get_decoder ()
 
 get_fileareas ()
 Define one array() of fileareas that each block controls. More...
 
 get_info ()
 
 get_logger ()
 
 get_name ()
 
 get_old_blockid ()
 
 get_old_contextid ()
 
 get_old_courseid ()
 
 get_old_system_contextid ()
 
 get_preloaded_information ()
 
 get_progress ()
 Gets the progress reporter, which can be used to report progress within the backup or restore process. More...
 
 get_restoreid ()
 
 get_results ()
 Return the current plan's results. More...
 
 get_setting ($name)
 
 get_setting_value ($name)
 
 get_settings ()
 
 get_steps ()
 
 get_target ()
 
 get_taskbasepath ()
 Block tasks have their own directory to write files. More...
 
 get_tempdir ()
 
 get_userid ()
 
 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) More...
 
 is_excluding_activities ()
 
 is_missing_modules ()
 
 is_samesite ()
 
 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_blockid ($blockid)
 
 set_blockname ($blockname)
 
 set_contextid ($contextid)
 
 set_old_blockid ($blockid)
 
 set_old_contextid ($contextid)
 
 set_plan ($plan)
 
 set_preloaded_information ()
 
 setting_exists ($name)
 

Static Public Member Functions

static define_decode_contents ()
 Define the contents in the activity that must be processed by the link decoder. More...
 
static define_decode_rules ()
 Define the decoding rules for links belonging to the activity to be executed by the link decoder. More...
 

Protected Member Functions

 add_setting ($setting)
 
 decode_configdata (string $configdata)
 Helper method to safely unserialize block configuration during restore. More...
 
 define_my_settings ()
 Define (add) particular settings that each block can have. More...
 
 define_my_steps ()
 Define (add) particular steps that each block can have. More...
 
 define_settings ()
 Define the common setting that any backup block will have. More...
 

Protected Attributes

 $blockid
 
 $blockname
 
 $built
 
 $contextid
 
 $executed
 
 $name
 
 $oldblockid
 
 $oldcontextid
 
 $plan
 
 $settings
 
 $steps
 
 $taskbasepath
 

Detailed Description

Specialised restore task for the glossary_random block (using execute_after_tasks for recoding of glossaryid)

TODO: Finish phpdocs

Member Function Documentation

◆ add_result()

base_task::add_result (   $result)
inherited

Add the given info to the current plan's results.

See also
base_plan::add_result()
Parameters
array$resultassociative array describing a result of a task/step

◆ after_restore()

restore_glossary_random_block_task::after_restore ( )

This function, executed after all the tasks in the plan have been executed, will perform the recode of the target glossary for the block.

This must be done here and not in normal execution steps because the glossary may be restored after the block.

◆ build()

restore_block_task::build ( )
inherited

Create all the steps that will be part of this task.

Reimplemented from base_task.

◆ calculate_checksum()

base_task::calculate_checksum ( )
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.

◆ decode_configdata()

restore_block_task::decode_configdata ( string  $configdata)
protectedinherited

Helper method to safely unserialize block configuration during restore.

Parameters
string$configdataThe original base64 encoded block config, as retrieved from the block_instances table
Return values
stdClass

◆ define_decode_contents()

static restore_glossary_random_block_task::define_decode_contents ( )
static

Define the contents in the activity that must be processed by the link decoder.

Reimplemented from restore_block_task.

◆ define_decode_rules()

static restore_glossary_random_block_task::define_decode_rules ( )
static

Define the decoding rules for links belonging to the activity to be executed by the link decoder.

Reimplemented from restore_block_task.

◆ define_my_settings()

restore_glossary_random_block_task::define_my_settings ( )
protected

Define (add) particular settings that each block can have.

Reimplemented from restore_block_task.

◆ define_my_steps()

restore_glossary_random_block_task::define_my_steps ( )
protected

Define (add) particular steps that each block can have.

Reimplemented from restore_block_task.

◆ define_settings()

restore_block_task::define_settings ( )
protectedinherited

Define the common setting that any backup block will have.

Reimplemented from base_task.

◆ destroy()

base_task::destroy ( )
inherited

Destroy all circular references.

It helps PHP 5.2 a lot!

◆ execute()

base_task::execute ( )
inherited

Function responsible for executing the steps of any task (setting the $executed property to true)

Implements executable.

Reimplemented in backup_activity_task, backup_section_task, restore_activity_task, and restore_section_task.

◆ get_configdata_encoded_attributes()

restore_glossary_random_block_task::get_configdata_encoded_attributes ( )

Define one array() of configdata attributes that need to be decoded.

Reimplemented from restore_block_task.

◆ get_fileareas()

restore_glossary_random_block_task::get_fileareas ( )

Define one array() of fileareas that each block controls.

Reimplemented from restore_block_task.

◆ get_old_contextid()

restore_block_task::get_old_contextid ( )
inherited

Reimplemented from restore_task.

◆ get_progress()

base_task::get_progress ( )
inherited

Gets the progress reporter, which can be used to report progress within the backup or restore process.

Return values
core::progress::baseProgress reporting object

◆ get_results()

base_task::get_results ( )
inherited

Return the current plan's results.

Return values
array|null

◆ get_setting()

base_task::get_setting (   $name)
inherited

◆ get_taskbasepath()

restore_block_task::get_taskbasepath ( )
inherited

Block tasks have their own directory to write files.

Reimplemented from base_task.

◆ get_weight()

base_task::get_weight ( )
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.

Return values
intWeight

Reimplemented in backup_final_task.

◆ is_checksum_correct()

base_task::is_checksum_correct (   $checksum)
inherited

Given one checksum, returns if matches object's checksum (true) or no (false)

Implements checksumable.

◆ log()

base_task::log (   $message,
  $level,
  $a = null,
  $depth = null,
  $display = false 
)
inherited

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.


The documentation for this class was generated from the following file: