function system_settings_overview

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

Displays the configuration overview page.

This menu callback implementation is a legacy function that used to display the configuration overview page at admin/config. It is currently unused and will be removed in Drupal 8. The page at admin/config is now generated by system_admin_config_page().

See also

system_admin_config_page()

File

drupal-7.x/modules/system/system.admin.inc, line 119
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/config');
  $content = system_admin_menu_block($item);

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

  return $output;
}