diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-12-13 00:50:11 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-12-13 00:50:11 +0000 |
commit | e7a7c88d81f494d8a0c99f36338247caaf6b4bd3 (patch) | |
tree | 7d2d5281ce85fae048b4a399ba305f2f6c8c658c /pages/lists/mostviewedimages.php | |
parent | b1f340a7041a92541b4e4220fa6c780f596dcc39 (diff) | |
download | elgg-e7a7c88d81f494d8a0c99f36338247caaf6b4bd3.tar.gz elgg-e7a7c88d81f494d8a0c99f36338247caaf6b4bd3.tar.bz2 |
added slideshows to the lists
Diffstat (limited to 'pages/lists/mostviewedimages.php')
-rw-r--r-- | pages/lists/mostviewedimages.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pages/lists/mostviewedimages.php b/pages/lists/mostviewedimages.php index 1e856edc6..d945680f1 100644 --- a/pages/lists/mostviewedimages.php +++ b/pages/lists/mostviewedimages.php @@ -49,7 +49,15 @@ } */ //error_log("custom query is " . (float)(microtime(true) - $start)); - + + // 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' ); + } + if ($owner_guid) { if ($owner_guid == get_loggedin_userid()) { $title = elgg_echo("tidypics:yourmostviewed"); |