function system_settings_overview

7.x system.admin.inc system_settings_overview()
6.x system.admin.inc system_settings_overview()

Menu callback: Displays the configuration overview page.

1 string reference to 'system_settings_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 133
Admin page callbacks for the system module.

Code

function system_settings_overview() {
  // Check database setup if necessary
  if (function_exists('db_check_setup') && empty($_POST)) {
    db_check_setup();
  }

  $item = menu_get_item('admin/settings');
  $content = system_admin_menu_block($item);

  $output = theme('admin_block_content', $content);

  return $output;
}