diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-29 03:57:04 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-05-29 03:57:04 +0000 |
commit | f13d5024035faeaae8aeff84ae9ffc719879de54 (patch) | |
tree | c145f7d6f6b4d0cef61b0dcda2c0021f85b8ba23 /modules/system | |
parent | 114a7f2cb38c807c2315efe1fe6ba5fb5cc78121 (diff) | |
download | brdo-f13d5024035faeaae8aeff84ae9ffc719879de54.tar.gz brdo-f13d5024035faeaae8aeff84ae9ffc719879de54.tar.bz2 |
#475348 by boombatower: Move admin/development to system.module so it's available to other modules.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index ce51cb714..5b3ec5cda 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -582,6 +582,17 @@ function system_menu() { 'type' => MENU_CALLBACK, ); + // Development menu category. + $items['admin/development'] = array( + 'title' => 'Development', + 'description' => 'Development tools.', + 'position' => 'right', + 'weight' => -7, + 'page callback' => 'system_admin_menu_block_page', + 'access callback' => 'system_admin_menu_block_access', + 'access arguments' => array('admin/development', 'access administration pages'), + ); + // Actions. $items['admin/settings/actions'] = array( 'title' => 'Actions', |