diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-08-06 12:44:39 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-06 12:44:39 -0700 |
commit | c09e2ef7af5411f239ba7f1adb01be39b2950b84 (patch) | |
tree | 33c7bfb5c16b5cfc40b92704e23b1e932618628f /modules/gallery/controllers/quick.php | |
parent | b826182b7a7b2d630b478d3e2bcf0628989a92d9 (diff) | |
parent | ad19e29c469295189a2d13772706e39e3bd3dfc7 (diff) |
Merge branch 'master' of git@github.com:bharat/gallery3 into bharat_branch
Diffstat (limited to 'modules/gallery/controllers/quick.php')
-rw-r--r-- | modules/gallery/controllers/quick.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php index de027c1b..82176e02 100644 --- a/modules/gallery/controllers/quick.php +++ b/modules/gallery/controllers/quick.php @@ -18,20 +18,6 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class Quick_Controller extends Controller { - public function pane($id) { - $item = model_cache::get("item", $id); - if (!access::can("view", $item) || !access::can("edit", $item)) { - return ""; - } - - $view = new View("quick_pane.html"); - $page_type = Input::instance()->get("page_type"); - $view->button_list = gallery_quick::get_quick_buttons($item, $page_type); - $view->item = $item; - $view->page_type = $page_type; - print $view; - } - public function rotate($id, $dir) { access::verify_csrf(); $item = model_cache::get("item", $id); |