summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-30 19:24:21 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-30 19:24:21 +0000
commit926606eeca106fb2e0eff20f3b1bff205924fd36 (patch)
treec581d939750d30dc7db6242442e190ee168be127 /modules/system/system.module
parent8c8521081cbb8ffc80bb80c691dab3db270f5e9b (diff)
downloadbrdo-926606eeca106fb2e0eff20f3b1bff205924fd36.tar.gz
brdo-926606eeca106fb2e0eff20f3b1bff205924fd36.tar.bz2
- Patch #535564 by Gábor Hojtsy: the D7UX mockups call for a top level Content item, which would immediatey lead to the "Find content" screen. The current Drupal 7 code is almost there, but still has an RSS settings item blocking the implementation of this by default and aggregator and book also add subitems.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module11
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index bc35c9645..77e93f3f5 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -518,15 +518,6 @@ function system_menu() {
'type' => MENU_LOCAL_TASK,
'weight' => 2,
);
- $items['admin/content'] = array(
- 'title' => 'Content management',
- 'description' => "Manage your site's content.",
- 'position' => 'left',
- 'weight' => -10,
- 'page callback' => 'system_admin_menu_block_page',
- 'access callback' => 'system_admin_menu_block_access',
- 'access arguments' => array('admin/content', 'access administration pages'),
- );
// Menu items that are basically just menu blocks.
$items['admin/settings'] = array(
@@ -724,7 +715,7 @@ function system_menu() {
'page arguments' => array('system_image_toolkit_settings'),
'access arguments' => array('administer site configuration'),
);
- $items['admin/content/rss-publishing'] = array(
+ $items['admin/settings/rss-publishing'] = array(
'title' => 'RSS publishing',
'description' => 'Configure the site description, the number of items per feed and whether feeds should be titles/teasers/full-text.',
'page callback' => 'drupal_get_form',