You are here

function hosting_task_clone_form in Hosting 6.2

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

Implementation of hook_hosting_task_TASK_TYPE_form().

File

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;
}