You are here

background_process_ass.admin.inc in Background Process 6

File

background_process_ass/background_process_ass.admin.inc
View source
<?php

/**
 * @file
 */

/**
 * FAPI definition for settings page.
 */
function background_process_ass_settings_form() {
  $form = array();
  $form['background_process_ass_max_age'] = array(
    '#type' => 'textfield',
    '#title' => t('Max age'),
    '#description' => t('Time in seconds to wait before considering a process dead.'),
    '#default_value' => variable_get('background_process_ass_max_age', BACKGROUND_PROCESS_ASS_MAX_AGE),
  );
  return system_settings_form($form);
}

Functions

Namesort descending Description
background_process_ass_settings_form FAPI definition for settings page.