]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
added admin utilities menu item
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 29 Dec 2010 22:13:48 +0000 (22:13 +0000)
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>
Wed, 29 Dec 2010 22:13:48 +0000 (22:13 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7760 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/lib/admin.php
languages/en.php
mod/logbrowser/start.php
mod/reportedcontent/start.php

index 0fa3c95a5b52d94d2e8149db328dc32d6df922fe..0938b0565ca7975d969da9ca5ba5b8133d102997 100644 (file)
@@ -141,6 +141,9 @@ function admin_init() {
        elgg_add_admin_menu_item('plugins_simple', elgg_echo('admin:plugins:simple'), 'plugins');
        elgg_add_admin_menu_item('plugins_advanced', elgg_echo('admin:plugins:advanced'), 'plugins');
 
+       // plugins
+       elgg_add_admin_menu_item('utilities', elgg_echo('admin:utilities'));
+
        register_page_handler('admin', 'admin_settings_page_handler');
 }
 
index 2f946a945890ce30a032a98577b5bce02d238227..94bf38c2a19401f12fbb9358495ed884141b6669 100644 (file)
@@ -542,8 +542,8 @@ $english = array(
        'admin:description' => "The admin panel allows you to control all aspects of the system, from user management to how plugins behave. Choose an option below to get started.",
 
        'admin:overview' => 'Overview',
-
        'admin:appearance' => 'Appearance',
+       'admin:utilities' => 'Utilities',
 
        'admin:users' => "Users",
        'admin:users:online' => 'Currently Online',
index 9a254ba11e9e690f198d7cb6a3750368cbbcee9e..4e44cd0b883810415931926f109e4f16992e304e 100644 (file)
@@ -16,7 +16,7 @@ function logbrowser_init() {
 
        elgg_register_plugin_hook_handler('register', 'menu:user_hover', 'logbrowser_user_hover_menu');
        
-       elgg_add_admin_menu_item('logbrowser', elgg_echo('logbrowser'), 'overview');
+       elgg_add_admin_menu_item('logbrowser', elgg_echo('logbrowser'), 'utilities');
 }
 
 /**
index 872cf82eab9f41c6e413b2ca25661750d7c1e92b..15c1b7caee44da95e4261069797e72c8cda41fa2 100644 (file)
@@ -26,7 +26,7 @@ function reportedcontent_init() {
        }
 
        // Add admin menu item
-       elgg_add_admin_menu_item('reportedcontent', elgg_echo('reportedcontent'), 'overview');
+       elgg_add_admin_menu_item('reportedcontent', elgg_echo('reportedcontent'), 'utilities');
 
        // Register actions
        $action_path = elgg_get_plugin_path() . "reportedcontent/actions";