phpmyadmin/libraries/plugins/transformations/output/TextPlainExternal.php
Hugues Peccatte 857c8a92cf Move abstract transformation plugins to abs folder.
Update templates.

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-12 14:13:31 +02:00

45 lines
881 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Text Plain External Transformations plugin for phpMyAdmin
*
* @package PhpMyAdmin-Transformations
* @subpackage External
*/
namespace PMA\libraries\plugins\transformations\output;
use PMA\libraries\plugins\transformations\abs\ExternalTransformationsPlugin;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles the external transformation for text plain
*
* @package PhpMyAdmin-Transformations
* @subpackage External
*/
class TextPlainExternal extends ExternalTransformationsPlugin
{
/**
* 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";
}
}