Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / TransformationsInterface.int.php
blob1bcb8af45040ccdf18c41fbbbe83edc7a595f638
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Interface for the transformations plugins
6 * @package PhpMyAdmin
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /**
13 * Provides a common interface that will have to be implemented by all of the
14 * transformations plugins.
16 * @package PhpMyAdmin
18 interface TransformationsInterface
20 /**
21 * Gets the transformation description
23 * @return string
25 public static function getInfo();
27 /**
28 * Gets the specific MIME type
30 * @return string
32 public static function getMIMEType();
34 /**
35 * Gets the specific MIME subtype
37 * @return string
39 public static function getMIMESubtype();
41 /**
42 * Gets the transformation name of the specific plugin
44 * @return string
46 public static function getName();