aboutsummaryrefslogtreecommitdiff
path: root/mod/notifications/start.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/notifications/start.php')
-rw-r--r--mod/notifications/start.php20
1 files changed, 16 insertions, 4 deletions
diff --git a/mod/notifications/start.php b/mod/notifications/start.php
index 1bb99da35..859f4ac14 100644
--- a/mod/notifications/start.php
+++ b/mod/notifications/start.php
@@ -60,11 +60,23 @@ function notifications_page_handler($page) {
*
*/
function notifications_plugin_pagesetup() {
- global $CONFIG;
- if (elgg_get_context() == 'settings') {
- add_submenu_item(elgg_echo('notifications:subscriptions:changesettings'), "pg/notifications/personal");
+ if (elgg_get_context() == "settings" && get_loggedin_userid()) {
+ $user = get_loggedin_user();
+
+ $params = array(
+ 'name' => '2_a_user_notify',
+ 'title' => elgg_echo('notifications:subscriptions:changesettings'),
+ 'url' => "pg/notifications/personal",
+ );
+ elgg_register_menu_item('page', $params);
+
if (is_plugin_enabled('groups')) {
- add_submenu_item(elgg_echo('notifications:subscriptions:changesettings:groups'), "pg/notifications/group");
+ $params = array(
+ 'name' => '2_group_notify',
+ 'title' => elgg_echo('notifications:subscriptions:changesettings:groups'),
+ 'url' => "pg/notifications/group",
+ );
+ elgg_register_menu_item('page', $params);
}
}
}