diff options
Diffstat (limited to 'pages/lists/recentlycommented.php')
-rw-r--r-- | pages/lists/recentlycommented.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pages/lists/recentlycommented.php b/pages/lists/recentlycommented.php index a39caf6ae..1d5f7aea7 100644 --- a/pages/lists/recentlycommented.php +++ b/pages/lists/recentlycommented.php @@ -13,6 +13,15 @@ set_page_owner(get_loggedin_userid()); } + // allow other plugins to override the slideshow + $slideshow_link = trigger_plugin_hook('tp_slideshow', 'album', array(), null); + if ($slideshow_link) { + add_submenu_item(elgg_echo('album:slideshow'), + $slideshow_link, + 'photos' ); + } + + global $CONFIG; $prefix = $CONFIG->dbprefix; $max_limit = 200; //get extra because you'll have multiple views per image in the result set |