background_process_ass.admin.inc 485 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. */
  5. /**
  6. * FAPI definition for settings page.
  7. */
  8. function background_process_ass_settings_form() {
  9. $form = array();
  10. $form['background_process_ass_max_age'] = array(
  11. '#type' => 'textfield',
  12. '#title' => t('Max age'),
  13. '#description' => t('Time in seconds to wait before considering a process dead.'),
  14. '#default_value' => variable_get('background_process_ass_max_age', BACKGROUND_PROCESS_ASS_MAX_AGE),
  15. );
  16. return system_settings_form($form);
  17. }