summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/system.module9
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',