|
| apply_date_offset ($value) |
| Apply course startdate offset based in original course startdate and course_offset_startdate setting Note we are using one static cache here, but by restoreid, so it's ok for concurrence/multiple executions in the same request. More...
|
|
| decrypt ($value) |
| Returns symmetric-key AES-256 decryption of base64 encoded contents. 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) |
|
Process legacy module availability records in backup_ids.
Matches course modules and grade item id once all them have been already restored. Only if all matchings are satisfied the availability condition will be created. At the same time, it is required for the site to have that functionality enabled.
This step is included only to handle legacy backups (2.6 and before). It does not do anything for newer backups.
- Copyright
- 2014 The Open University
- License
- http://www.gnu.org/copyleft/gpl.html GNU Public License
restore_step::decrypt |
( |
|
$value | ) |
|
|
inherited |
Returns symmetric-key AES-256 decryption of base64 encoded contents.
This method is used in restore operations to decrypt contents encrypted with encrypted_final_element automatically decoding (base64) and decrypting contents using the key stored in backup_encryptkey config.
Requires openssl, cipher availability, and key existence (backup automatically sets it if missing). Integrity is provided via HMAC.
- Parameters
-
- Return values
-
string|null | decoded and decrypted value or null if the operation can not be performed. |