Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / transformations / Text_Plain_Longtoipv4.class.php
blob44eea507025b7a4fd643a071d23163acf920a7f1
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Text Plain Long To IPv4 Transformations plugin for phpMyAdmin
6 * @package PhpMyAdmin-Transformations
7 * @subpackage LongToIPv4
8 */
9 if (! defined('PHPMYADMIN')) {
10 exit;
13 /* Get the long to ipv4 transformations interface */
14 require_once 'abstract/LongToIPv4TransformationsPlugin.class.php';
16 /**
17 * Handles the long to ipv4 transformation for text plain
19 * @package PhpMyAdmin-Transformations
20 * @subpackage LongToIPv4
22 class Text_Plain_Longtoipv4 extends LongToIPv4TransformationsPlugin
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_Longtoipv4::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_Longtoipv4_getInfo()
63 return Text_Plain_Longtoipv4::getInfo();