function system_logging_overview

6.x system.admin.inc system_logging_overview()

Menu callback; Menu page for the various logging options.

1 string reference to 'system_logging_overview'
system_menu in drupal-6.x/modules/system/system.module
Implementation of hook_menu().

File

drupal-6.x/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;
}