[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
phpMyAdmin
/
libraries
/
classes
/
Plugins
/
Transformations
/
Output
/
[
Home
]
File: Text_Plain_Bool2Text.php
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Text Plain Bool2Text Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage Bool2Text */ namespace PhpMyAdmin\Plugins\Transformations\Output; use PhpMyAdmin\Plugins\Transformations\Abs\Bool2TextTransformationsPlugin; /** * Handles the Boolean to Text transformation for text plain. * Has one option: the output format (default 'T/F') * or 'Y/N' * * @package PhpMyAdmin-Transformations * @subpackage Bool2Text */ // @codingStandardsIgnoreLine class Text_Plain_Bool2Text extends Bool2TextTransformationsPlugin { /** * Gets the plugin`s MIME type * * @return string */ public static function getMIMEType() { return "Text"; } /** * Gets the plugin`s MIME subtype * * @return string */ public static function getMIMESubtype() { return "Plain"; } }