| Versionen | |
|---|---|
| drupal6 – drupal7 | system_settings_overview() |
Menu callback; displays a module's settings page.
modules/
<?php
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;
}
?>
Kommentare
Kommentar hinzufügen