diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-12-09 18:52:31 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-12-09 18:52:31 +0000 |
commit | 9b74fbaa7003c27da0061263f281e1eb17af2193 (patch) | |
tree | d4f4013dab83872542a6b18e01b69e7531130b9d /modules/system/system.module | |
parent | e3c0e5094f4ca2dda3f5a7bf0820ae07721c938b (diff) | |
download | brdo-9b74fbaa7003c27da0061263f281e1eb17af2193.tar.gz brdo-9b74fbaa7003c27da0061263f281e1eb17af2193.tar.bz2 |
- Patch #645968 by yoroy, Bojhan, seutje, Dave Reid, Damien Tournoud: added workflow category.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 0493afea2..47d6acf03 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -934,7 +934,6 @@ function system_menu() { 'access arguments' => array('administer site configuration'), 'file' => 'system.admin.inc', ); - $items['admin/config/search'] = array( 'title' => 'Search and metadata', 'description' => 'Local site search, metadata and SEO.', @@ -1027,6 +1026,14 @@ function system_menu() { 'type' => MENU_CALLBACK, 'file' => 'system.admin.inc', ); + // Addititional categories + $items['admin/config/workflow'] = array( + 'title' => 'Workflow', + 'description' => 'Content workflow, editorial workflow tools.', + 'page callback' => 'system_admin_menu_block_page', + 'access arguments' => array('access administration pages'), + 'file' => 'system.admin.inc', + ); // Default page for batch operations. $items['batch'] = array( 'page callback' => 'system_batch_page', |