Menu engine heavily extended, misc rewrites:
[core.git] / inc / classes / main / response / image / class_ImageResponse.php
index bcf0c157829808186ae749094539a3487050bd9e..dceb517d22e79eed168f18019dc08bf98ae4e10c 100644 (file)
  * Michal Cihar <michal@cihar.com>, licensed under GNU GPL 2.0.
  */
 class ImageResponse extends BaseResponse implements Responseable {
-       /**
-        * Instance of the image
-        */
-       private $imageInstance = null;
-
        /**
         * Protected constructor
         *
@@ -71,7 +66,7 @@ class ImageResponse extends BaseResponse implements Responseable {
                $cfg = $this->getConfigInstance();
 
                // Set new template engine
-               $cfg->setConfigEntry('template_class'         , $cfg->getConfigEntry('image_template_class'));
+               $cfg->setConfigEntry('web_template_class'         , $cfg->getConfigEntry('image_template_class'));
                $cfg->setConfigEntry('raw_template_extension' , '.img');
                $cfg->setConfigEntry('code_template_extension', '.xml');
                $cfg->setConfigEntry('tpl_base_path'          , 'templates/images/');
@@ -236,25 +231,6 @@ class ImageResponse extends BaseResponse implements Responseable {
                } // END - if
        }
 
-       /**
-        * Setter for image instanxe
-        *
-        * @param       $imageInstance  An instance of an image
-        * @return      void
-        */
-       public final function setImageInstance (BaseImage $imageInstance) {
-               $this->imageInstance = $imageInstance;
-       }
-
-       /**
-        * Getter for image instanxe
-        *
-        * @return      $imageInstance  An instance of an image
-        */
-       public final function getImageInstance () {
-               return $this->imageInstance;
-       }
-
        /**
         * Getter for default command
         *