system_error_reporting_settings

5 system.module system_error_reporting_settings()
6 system.admin.inc system_error_reporting_settings()

1 string reference to 'system_error_reporting_settings'

File

modules/system/system.module, line 613
Configuration system that lets administrators modify the workings of the site.

Code

function system_error_reporting_settings() {

  $form['site_403'] = array(
    '#type' => 'textfield', 
    '#title' => t('Default 403 (access denied) page'), 
    '#default_value' => variable_get('site_403', ''), 
    '#size' => 40, 
    '#description' => t('This page is displayed when the requested document is denied to the current user. If unsure, specify nothing.'), 
    '#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q='),
  );

  $form['site_404'] = array(
    '#type' => 'textfield', 
    '#title' => t('Default 404 (not found) page'), 
    '#default_value' => variable_get('site_404', ''), 
    '#size' => 40, 
    '#description' => t('This page is displayed when no other content matches the requested document. If unsure, specify nothing.'), 
    '#field_prefix' => url(NULL, NULL, NULL, TRUE) . (variable_get('clean_url', 0) ? '' : '?q='),
  );

  $form['error_level'] = array(
    '#type' => 'select', 
    '#title' => t('Error reporting'), 
    '#default_value' => variable_get('error_level', 1), 
    '#options' => array(t('Write errors to the log'), t('Write errors to the log and to the screen')), 
    '#description' => t('Where Drupal, PHP and SQL errors are logged. On a production server it is recommended that errors are only written to the error log. On a test server it can be helpful to write logs to the screen.'),
  );

  $period = drupal_map_assoc(array(3600, 10800, 21600, 32400, 43200, 86400, 172800, 259200, 604800, 1209600, 2419200), 'format_interval');
  $period['1000000000'] = t('Never');
  $form['watchdog_clear'] = array(
    '#type' => 'select', 
    '#title' => t('Discard log entries older than'), 
    '#default_value' => variable_get('watchdog_clear', 604800), 
    '#options' => $period, 
    '#description' => t('The time log entries should be kept. Older entries will be automatically discarded. Requires crontab.'),
  );

  return system_settings_form($form);
}
Login or register to post comments