diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-01-02 20:18:44 +0000 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-02 20:18:44 +0000 |
| commit | 8595b75d9b47e0a2a0c6e288e3821c29b058c4c0 (patch) | |
| tree | 0ce5feba121228ef41bc3e3a6805f2700bd58aed | |
| parent | 1ce19a994dfcc8c0d79e6a2f9492dcbee8599d86 (diff) | |
Restructire site admin menu a bit:
Rename menu "General Settings" -> "Settings"
Rename "Comments Moderation" -> "Comments"
Move "Content" -> "Configure Spam Filtering" -> "Settings" -> "Spam Filtering"
| -rw-r--r-- | core/helpers/core_menu.php | 4 | ||||
| -rw-r--r-- | modules/comment/helpers/comment_menu.php | 2 | ||||
| -rw-r--r-- | modules/spam_filter/helpers/spam_filter_menu.php | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/core/helpers/core_menu.php b/core/helpers/core_menu.php index c863400f..3131c1e8 100644 --- a/core/helpers/core_menu.php +++ b/core/helpers/core_menu.php @@ -78,8 +78,8 @@ class core_menu_Core { ->label(_("Dashboard")) ->url(url::site("admin"))) ->append(Menu::factory("submenu") - ->id("general_settings_menu") - ->label(_("General Settings")) + ->id("settings_menu") + ->label(_("Settings")) ->append(Menu::factory("link") ->id("graphics_toolkits") ->label(_("Graphics")) diff --git a/modules/comment/helpers/comment_menu.php b/modules/comment/helpers/comment_menu.php index b98140a6..2cc6d789 100644 --- a/modules/comment/helpers/comment_menu.php +++ b/modules/comment/helpers/comment_menu.php @@ -22,7 +22,7 @@ class comment_menu_Core { $menu->get("content_menu") ->append(Menu::factory("link") ->id("comments") - ->label(_("Comment Moderation")) + ->label(_("Comments")) ->url("#")); } } diff --git a/modules/spam_filter/helpers/spam_filter_menu.php b/modules/spam_filter/helpers/spam_filter_menu.php index 06ff14d6..7788063c 100644 --- a/modules/spam_filter/helpers/spam_filter_menu.php +++ b/modules/spam_filter/helpers/spam_filter_menu.php @@ -19,10 +19,10 @@ */ class spam_filter_menu_Core { public static function admin($menu, $theme) { - $menu->get("content_menu") + $menu->get("settings_menu") ->append(Menu::factory("link") ->id("spam_filter") - ->label(_("Configure Spam Filter")) + ->label(_("Spam Filtering")) ->url(url::site("admin/spam_filter"))); } } |
