watchdog_menu
Definition
watchdog_menu($may_cache)
modules/watchdog.module, line 40
Description
Implementation of hook_menu().
Code
<?php
function watchdog_menu($may_cache) {
$items = array();
if ($may_cache) {
$items[] = array('path' => 'admin/logs', 'title' => t('logs'),
'callback' => 'watchdog_overview');
$items[] = array('path' => 'admin/logs/event', 'title' => t('details'),
'callback' => 'watchdog_event',
'type' => MENU_CALLBACK);
}
return $items;
}
?> 