You are here

function system_settings_overview in Drupal 7

Same name and namespace in other branches
  1. 5 modules/system/system.module \system_settings_overview()
  2. 6 modules/system/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

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;
}