function system_settings_overview
Same name and namespace in other branches
- 7.x drupal-7.x/modules/system/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().
Archivo
- drupal-6.x/
modules/ system/ system.admin.inc, line 133 - 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/settings');
$content = system_admin_menu_block($item);
$output = theme('admin_block_content', $content);
return $output;
}