diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-08-28 16:23:05 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-08-28 16:23:05 +0000 |
commit | 3dea934d2b7c37e9c83f58b0da7942d40c7086f7 (patch) | |
tree | 0f302c07d2c3c67db4fab727af580ee158443a1b /modules/system/system.module | |
parent | 43db68b632def46ae0d86bbc2db8ed236e9adb65 (diff) | |
download | brdo-3dea934d2b7c37e9c83f58b0da7942d40c7086f7.tar.gz brdo-3dea934d2b7c37e9c83f58b0da7942d40c7086f7.tar.bz2 |
- Patch #560502 by Gabor Hojtsy: created 'content authoring' category.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index fb49140d7..4ed4e38e1 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -857,6 +857,15 @@ function system_menu() { 'type' => MENU_CALLBACK, 'file' => 'system.admin.inc', ); + $items['admin/config/content'] = array( + 'title' => 'Content authoring', + 'description' => 'Settings related to formatting and authoring content.', + 'position' => 'right', + 'weight' => 5, + 'page callback' => 'system_admin_menu_block_page', + 'access arguments' => array('access administration pages'), + 'file' => 'system.admin.inc', + ); // Settings. $items['admin/settings/site-information'] = array( |