You are here

function hosting_task_backup_form in Hostmaster (Aegir) 6

@file Site backup functions.

File

modules/hosting/site/hosting_site.backups.inc, line 8
Site backup functions.

Code

function hosting_task_backup_form($node) {
  $form['description'] = array(
    '#title' => t('Description'),
    '#type' => 'textfield',
    '#required' => FALSE,
    '#weight' => '-1',
    '#description' => "Describe the reasons for creating this backup.",
  );
  return $form;
}