You are here

function syslog_menu in Drupal 6

File

modules/syslog/syslog.module, line 28

Code

function syslog_menu() {
  $items['admin/settings/logging/syslog'] = array(
    'title' => 'Syslog',
    'description' => 'Settings for syslog logging. Syslog is an operating system administrative logging tool used in systems management and security auditing. Most suited to medium and large sites, syslog provides filtering tools that allow messages to be routed by type and severity.',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'syslog_admin_settings',
    ),
    'access arguments' => array(
      'administer site configuration',
    ),
  );
  return $items;
}