You are here

function hosting_site_post_hosting_restore_task in Hostmaster (Aegir) 6

implementation of hook_hosting_post_restore I am not very fond of the use of bitwise operators with negatives.

File

modules/hosting/site/hosting_site.drush.inc, line 141

Code

function hosting_site_post_hosting_restore_task($task, $data) {
  if ($data['context']['backup_file'] && $task->ref->type == 'site') {
    $platform = node_load($task->ref->platform);
    hosting_site_add_backup($task->ref->nid, $platform->web_server, $data['context']['backup_file'], t('Generated before being restored to a previous version'), $data['context']['backup_file_size']);
  }
}