You are here

function background_process_drush_dispatcher_form in Background Process 7.2

1 string reference to 'background_process_drush_dispatcher_form'
background_process_menu in ./background_process.module
Implements hook_menu().

File

./background_process.admin.inc, line 145

Code

function background_process_drush_dispatcher_form() {
  $form = array();
  $form['background_process_drush_cmd'] = array(
    '#type' => 'textfield',
    '#title' => t('Location of drush command'),
    '#description' => t('Full path of drush file name'),
    '#default_value' => variable_get('background_process_drush_cmd', BACKGROUND_PROCESS_DRUSH_CMD),
  );
  $form = system_settings_form($form);
  return $form;
}