diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-11 11:52:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-11 11:52:46 +0000 |
commit | 735e532bee7482fc55b91dd39b1e629dfd9e1957 (patch) | |
tree | a2e07bd3f3346a24fc769d76d46eda2bc6d2ada0 /modules/system/system.module | |
parent | ef5c041534a4d3afcb382cc8bec646e725ee61c9 (diff) | |
download | brdo-735e532bee7482fc55b91dd39b1e629dfd9e1957.tar.gz brdo-735e532bee7482fc55b91dd39b1e629dfd9e1957.tar.bz2 |
- Patch #508458 by catch, Gábor Hojtsy, yoroy: created 'Configuration and modules' section so we can start moving over configuration items. Let's see how this goes ...
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e3d01214d..69f4fe627 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -525,6 +525,13 @@ function system_menu() { 'access callback' => 'system_admin_menu_block_access', 'access arguments' => array('admin/settings', 'access administration pages'), ); + $items['admin/config'] = array( + 'title' => 'Configuration and modules', + 'page callback' => 'system_admin_config_page', + 'position' => 'right', + 'access callback' => array('system_admin_menu_block_access'), + 'access arguments' => array('admin/config', 'access administration pages'), + ); $items['admin/structure'] = array( 'title' => 'Structure', 'description' => 'Control how your site looks and feels.', |