function hosting_site_post_hosting_install_task in Hosting 7.4
Same name and namespace in other branches
- 5 site/hosting_site.drush.inc \hosting_site_post_hosting_install_task()
- 6.2 site/hosting_site.drush.inc \hosting_site_post_hosting_install_task()
- 7.3 site/hosting_site.drush.inc \hosting_site_post_hosting_install_task()
Implements hook_post_hosting_TASK_TYPE_task()
File
- site/
hosting_site.drush.inc, line 138 - Drush hooks for the Hosting site module.
Code
function hosting_site_post_hosting_install_task($task, $data) {
if ($task->ref->type == 'site') {
$context = $data['context'];
$packages = $context['packages'];
hosting_package_sync($packages);
hosting_package_instance_sync($task->ref->nid, $task->ref->type, $packages);
$task->ref->site_status = HOSTING_SITE_ENABLED;
$task->ref->no_verify = TRUE;
$task->ref->verified = REQUEST_TIME;
$task->ref->db_name = $data['self']['db_name'];
if ($context['cron_key']) {
$task->ref->cron_key = $context['cron_key'];
}
node_save($task->ref);
if ($context['login_link']) {
drush_log($context['login_link']);
// we need to store the timestamp too because expire only means it can be deleted
// after an amount of time, not will be deleted.
$cache = array(
'expire' => strtotime("+24 hours"),
'link' => $context['login_link'],
);
cache_set('hosting:site:' . $task->ref->nid . ':login_link', $cache, 'cache', $cache['expire']);
}
}
}