| 5 system.module | system_settings_overview() |
| 6 system.admin.inc | system_settings_overview() |
| 7 system.admin.inc | system_settings_overview() |
Menu callback; displays a module's settings page.
1 string reference to 'system_settings_overview'
File
- modules/
system/ system.module, line 1899 - Configuration system that lets administrators modify the workings of the site.
Code
function system_settings_overview() {
// Check database setup if necessary
if (function_exists('db_check_setup') && empty($_POST)) {
db_check_setup();
}
$menu = menu_get_item(NULL, 'admin/settings');
$content = system_admin_menu_block($menu);
$output = theme('admin_block_content', $content);
return $output;
}
Login or register to post comments