comparison modules/syslog/syslog.module @ 5:2427550111ae 6.2

Drupal 6.2
author Franck Deroche <webmaster@defr.org>
date Tue, 23 Dec 2008 14:30:08 +0100
parents c1f4ac30525a
children acef7ccb09b5
comparison
equal deleted inserted replaced
4:d94886ac61a0 5:2427550111ae
1 <?php 1 <?php
2 // $Id: syslog.module,v 1.14 2007/12/14 18:08:48 goba Exp $ 2 // $Id: syslog.module,v 1.14.2.1 2008/04/09 21:11:49 goba Exp $
3 3
4 /** 4 /**
5 * @file 5 * @file
6 * Redirects logging messages to syslog. 6 * Redirects logging messages to syslog.
7 */ 7 */
30 $items['admin/settings/logging/syslog'] = array( 30 $items['admin/settings/logging/syslog'] = array(
31 'title' => 'Syslog', 31 'title' => 'Syslog',
32 '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.', 32 '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.',
33 'page callback' => 'drupal_get_form', 33 'page callback' => 'drupal_get_form',
34 'page arguments' => array('syslog_admin_settings'), 34 'page arguments' => array('syslog_admin_settings'),
35 'access arguments' => array('administer site configuration'),
35 ); 36 );
36 return $items; 37 return $items;
37 } 38 }
38 39
39 function syslog_admin_settings() { 40 function syslog_admin_settings() {