Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / transformations / Text_Plain_Dateformat.class.php
blobed8c9e561db4b7f651ee5c0d4851b4309a3bcfd0
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Text Plain Date Format Transformations plugin for phpMyAdmin
6 * @package PhpMyAdmin-Transformations
7 * @subpackage DateFormat
8 */
9 if (! defined('PHPMYADMIN')) {
10 exit;
13 /* Get the date format transformations interface */
14 require_once 'abstract/DateFormatTransformationsPlugin.class.php';
16 /**
17 * Handles the date format transformation for text plain
19 * @package PhpMyAdmin-Transformations
20 * @subpackage DateFormat
22 class Text_Plain_Dateformat extends DateFormatTransformationsPlugin
24 /**
25 * Gets the plugin`s MIME type
27 * @return string
29 public static function getMIMEType()
31 return "Text";
34 /**
35 * Gets the plugin`s MIME subtype
37 * @return string
39 public static function getMIMESubtype()
41 return "Plain";
45 /**
46 * Function to call Text_Plain_Dateformat::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 Text_Plain_Dateformat_getInfo()
63 return Text_Plain_Dateformat::getInfo();