From 3eaa239bfad0bd59dacdf4da70bd33f22ac1f709 Mon Sep 17 00:00:00 2001 From: Alex Marin Date: Thu, 16 Aug 2012 22:38:03 +0300 Subject: [PATCH] oop: remove unused properties --- .../TransformationsPluginProperties.class.php | 157 ------------------ 1 file changed, 157 deletions(-) delete mode 100644 libraries/properties/plugins/TransformationsPluginProperties.class.php diff --git a/libraries/properties/plugins/TransformationsPluginProperties.class.php b/libraries/properties/plugins/TransformationsPluginProperties.class.php deleted file mode 100644 index abdc8e1203..0000000000 --- a/libraries/properties/plugins/TransformationsPluginProperties.class.php +++ /dev/null @@ -1,157 +0,0 @@ -_info; - } - - /** - * Sets information about the transformations plug-in - * - * @param string $info information about the transformations plug-in - * - * @return void - */ - public function setInfo($info) - { - $this->_info = $info; - } - - /** - * Gets the MIME type - * - * @return string - */ - public function getMimeType() - { - return $this->_mimeType; - } - - /** - * Sets the MIME type - * - * @param string $mimeType MIME type - * - * @return void - */ - public function setMimeType($mimeType) - { - $this->_mimeType = $mimeType; - } - - /** - * Gets the MIME subtype - * - * @return string - */ - public function getMimeSubtype() - { - return $this->_mimeSubype; - } - - /** - * Sets the MIME subtype - * - * @param string $mimeSubtype MIME subtype - * - * @return void - */ - public function setMimeSubtype($mimeSubtype) - { - $this->_mimeSubype = $mimeSubtype; - } - - /** - * Gets the transformation name - * - * @return string - */ - public function getTransformationName() - { - return $this->_transformationName; - } - - /** - * Sets the transformation name - * - * @param string $transformationName transformation name - * - * @return void - */ - public function setTransformationName($transformationName) - { - $this->_transformationName = $transformationName; - } -} -?> \ No newline at end of file