| Versionen | |
|---|---|
| drupal7 | system_logging_settings() |
Form builder; Configure error reporting settings.
modules/
<?php
function system_logging_settings() {
$form['error_level'] = array(
'#type' => 'radios',
'#title' => t('Display PHP messages'),
'#default_value' => ERROR_REPORTING_DISPLAY_ALL,
'#options' => array(
ERROR_REPORTING_HIDE => t('None'),
ERROR_REPORTING_DISPLAY_SOME => t('Errors and warnings'),
ERROR_REPORTING_DISPLAY_ALL => t('All messages'),
),
);
return system_settings_form($form);
}
?>
Kommentare
Kommentar hinzufügen