syslog_menu

Versions
6
syslog_menu()

Code

modules/syslog/syslog.module, line 28

<?php
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;
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.