phpmyadmin/libraries/plugins/transformations/TextPlainLink.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
854 B
PHP

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