You are here

function hosting_task_clone_form in Hostmaster (Aegir) 6

Implementation of hook_hosting_task_TASK_TYPE_form().

File

modules/hosting/clone/hosting_clone.module, line 56
Allow sites to be cloned.

Code

function hosting_task_clone_form($node) {
  $form = hosting_task_migrate_form($node);
  $form['new_uri']['#description'] = t('The new domain name of the clone site.');
  return $form;
}