function system_settings_overview
Same name and namespace in other branches
- 6.x drupal-6.x/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
2 string references to 'system_settings_overview'
- drupal-6.bare.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.bare.database.php - Bare installation of Drupal 6.17, for test purposes.
- drupal-6.filled.database.php in drupal-7.x/
modules/ simpletest/ tests/ upgrade/ drupal-6.filled.database.php - Filled installation of Drupal 6.17, for test purposes.
Archivo
- drupal-7.x/
modules/ system/ system.admin.inc, line 119 - Admin page callbacks for the system module.
Código
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;
}