function drush_hosting_clone_pre_hosting_task in Hosting 7.4
Same name and namespace in other branches
- 6.2 clone/hosting_clone.drush.inc \drush_hosting_clone_pre_hosting_task()
- 7.3 clone/hosting_clone.drush.inc \drush_hosting_clone_pre_hosting_task()
@file Drush include for the site cloning module.
File
- clone/
hosting_clone.drush.inc, line 7 - Drush include for the site cloning module.
Code
function drush_hosting_clone_pre_hosting_task($task) {
$task =& drush_get_context('HOSTING_TASK');
if ($task->ref->type == 'site' && $task->task_type == 'clone') {
$task->args[2] = '@' . hosting_site_get_domain($task->task_args['new_uri']);
$platform = node_load($task->task_args['target_platform']);
$task->args[3] = hosting_context_name($platform->nid);
$profile_instance = _hosting_migrate_get_target_profile_name($task);
if (is_object($profile_instance) && isset($profile_instance->short_name)) {
$task->options['profile'] = $profile_instance->short_name;
}
else {
drush_set_error("HOSTING_NO_VALID_PROFILE", dt("There are no valid install profiles on the target platform to migrate to"));
}
if ($task->ref->db_server != $task->task_args['new_db_server']) {
$task->options['new_db_server'] = hosting_context_name($task->task_args['new_db_server']);
}
if (module_exists('hosting_alias')) {
$task->options['aliases'] = str_replace("\n", ",", $task->task_args['aliases']);
$task->options['redirection'] = $task->task_args['redirection'];
}
}
}