diff options
Diffstat (limited to 'mod/notifications/start.php')
-rw-r--r-- | mod/notifications/start.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/notifications/start.php b/mod/notifications/start.php index 4c8182990..22d4a0be0 100644 --- a/mod/notifications/start.php +++ b/mod/notifications/start.php @@ -20,8 +20,13 @@ if (get_context() == 'settings')
add_submenu_item(elgg_echo('notifications:subscriptions:changesettings'), $CONFIG->wwwroot . "mod/notifications/");
}
+
+ function notifications_plugin_init() {
+ extend_view('css','notifications/css');
+ }
register_elgg_event_handler('pagesetup','system','notifications_plugin_pagesetup',1000);
+ register_elgg_event_handler('init','system','notifications_plugin_init');
// Register action
global $CONFIG;
|