Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / transformations / Image_JPEG_Link.class.php
blobfc04040f229d9352f4298b7e02a748585e3d44c0
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Image JPEG Link Transformations plugin for phpMyAdmin
6 * @package PhpMyAdmin-Transformations
7 * @subpackage Link
8 */
9 if (! defined('PHPMYADMIN')) {
10 exit;
13 /* Get the link transformations interface */
14 require_once 'abstract/ImageLinkTransformationsPlugin.class.php';
16 /**
17 * Handles the link transformation for image jpeg
19 * @package PhpMyAdmin-Transformations
20 * @subpackage Link
22 class Image_JPEG_Link extends ImageLinkTransformationsPlugin
24 /**
25 * Gets the plugin`s MIME type
27 * @return string
29 public static function getMIMEType()
31 return "Image";
34 /**
35 * Gets the plugin`s MIME subtype
37 * @return string
39 public static function getMIMESubtype()
41 return "JPEG";
45 /**
46 * Function to call Image_JPEG_Link::getInfo();
48 * Temporary workaround for bug #3783 :
49 * Calling a method from a variable class is not possible before PHP 5.3.
51 * This function is called by PMA_getTransformationDescription()
52 * in libraries/transformations.lib.php using a variable to construct it's name.
53 * This function then calls the static method.
55 * Don't use this function unless you are affected by the same issue.
56 * Call the static method directly instead.
58 * @deprecated
59 * @return string Info about transformation class
61 function Image_JPEG_Link_getInfo()
63 return Image_JPEG_Link::getInfo();