3rd try
authorMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 17 Feb 2010 01:07:00 +0000 (20:07 -0500)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Wed, 17 Feb 2010 01:07:00 +0000 (20:07 -0500)
ansel/lib/ImageView/PolaroidStack.php.php [deleted file]

diff --git a/ansel/lib/ImageView/PolaroidStack.php.php b/ansel/lib/ImageView/PolaroidStack.php.php
deleted file mode 100644 (file)
index b2b2ddb..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-/**
- * ImageView to create the gallery polaroid stacks.
- *
- * @author Michael J. Rubinsky <mrubinsk@horde.org>
- * @package Ansel
- */
-class Ansel_ImageView_PolaroidStack extends Ansel_ImageView
-{
-    public $need = array('PhotoStack');
-
-    /**
-     *
-     * @return Horde_Image
-     */
-    protected function _create()
-    {
-        $imgobjs = $this->_getStackImages();
-        $style = $this->_params['style'];
-        $params = array('width' => 100,
-                        'height' => 100,
-                        'background' => $style['background']);
-
-        $baseImg = Ansel::getImageObject($params);
-        try {
-            $baseImg->addEffect(
-                'PhotoStack',
-                array('images' => $imgobjs,
-                      'resize_height' => $GLOBALS['conf']['thumbnail']['height'],
-                      'padding' => 10,
-                      'background' => $style['background'],
-                      'type' => 'polaroid'));
-            $baseImg->applyEffects();
-            $baseImg->resize($GLOBALS['conf']['thumbnail']['width'],
-                             $GLOBALS['conf']['thumbnail']['height']);
-
-        } catch (Horde_Image_Exception $e) {
-            return false;
-        }
-
-        return $baseImg;
-    }
-
-}