You are here

function hosting_task_clone_form in Hosting 7.4

Same name and namespace in other branches
  1. 6.2 clone/hosting_clone.module \hosting_task_clone_form()
  2. 7.3 clone/hosting_clone.module \hosting_task_clone_form()

Implements hook_hosting_task_TASK_TYPE_form().

File

clone/hosting_clone.module, line 58
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;
}