On this page
function system_settings_overview
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
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;
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.admin.inc/function/system_settings_overview/7.x