From 63ca443649094a14a286cf6924ca211bc1b5753c Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Thu, 5 Feb 2009 18:12:33 +0000 Subject: Add full size image display. Changes the core menu now checks that the user has authotization before displaying the view fullsize icon. It probably needs a better icon, (but u make do with what u have or don't have :-) ) --- core/helpers/core_menu.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'core/helpers/core_menu.php') diff --git a/core/helpers/core_menu.php b/core/helpers/core_menu.php index 1564e4d4..247fd215 100644 --- a/core/helpers/core_menu.php +++ b/core/helpers/core_menu.php @@ -87,12 +87,15 @@ class core_menu_Core { } static function photo($menu, $theme) { - $menu - ->append(Menu::factory("link") + if (access::can("view_full", $theme->item())) { + $menu + ->append(Menu::factory("link") ->id("fullsize") ->label(t("View full size")) ->url("#") - ->css_id("gFullsizeLink")) + ->css_id("gFullsizeLink")); + } + $menu ->append(Menu::factory("link") ->id("album") ->label(t("Return to album")) -- cgit v1.2.3