12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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";
- }
- }
|