function system_logging_overview in Drupal 6
Menu callback; Menu page for the various logging options.
1 string reference to 'system_logging_overview'
- system_menu in modules/
system/ system.module - Implementation of hook_menu().
File
- modules/
system/ system.admin.inc, line 1266 - Admin page callbacks for the system module.
Code
function system_logging_overview() {
$item = menu_get_item('admin/settings/logging');
$content = system_admin_menu_block($item);
$output = theme('admin_block_content', $content);
return $output;
}