diff options
Diffstat (limited to 'modules/comment/helpers/comment_menu.php')
-rw-r--r-- | modules/comment/helpers/comment_menu.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/comment/helpers/comment_menu.php b/modules/comment/helpers/comment_menu.php index 2cc6d789..6b17f57f 100644 --- a/modules/comment/helpers/comment_menu.php +++ b/modules/comment/helpers/comment_menu.php @@ -25,4 +25,13 @@ class comment_menu_Core { ->label(_("Comments")) ->url("#")); } + + public static function photo($menu, $theme) { + $menu + ->append(Menu::factory("link") + ->id("comments") + ->label(_("View comments on this item")) + ->url("#comments") + ->css_id("gCommentsLink")); + } } |