function background_process_queue_dispatcher_form in Background Process 7.2
1 string reference to 'background_process_queue_dispatcher_form'
- background_process_menu in ./
background_process.module - Implements hook_menu().
File
- ./
background_process.admin.inc, line 157
Code
function background_process_queue_dispatcher_form() {
$form = array();
$form['background_process_queue_name'] = array(
'#type' => 'textfield',
'#title' => t('Default queue name'),
'#description' => t('Name of the default queue to use for background processes'),
'#default_value' => variable_get('background_process_queue_name', BACKGROUND_PROCESS_QUEUE_NAME),
);
$form = system_settings_form($form);
return $form;
}