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