You are here

function system_settings_overview in Drupal 5

Same name and namespace in other branches
  1. 6 modules/system/system.admin.inc \system_settings_overview()
  2. 7 modules/system/system.admin.inc \system_settings_overview()

Menu callback; displays a module's settings page.

1 string reference to 'system_settings_overview'
system_menu in modules/system/system.module
Implementation of hook_menu().

File

modules/system/system.module, line 1899
Configuration system that lets administrators modify the workings of the site.

Code

function system_settings_overview() {

  // Check database setup if necessary
  if (function_exists('db_check_setup') && empty($_POST)) {
    db_check_setup();
  }
  $menu = menu_get_item(NULL, 'admin/settings');
  $content = system_admin_menu_block($menu);
  $output = theme('admin_block_content', $content);
  return $output;
}