phpmyadmin/libraries/plugins/transformations/TextPlainSubstring.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 Substring Transformations plugin for phpMyAdmin
*
* @package PhpMyAdmin-Transformations
* @subpackage Substring
*/
namespace PMA\libraries\plugins\transformations;
use PMA\libraries\plugins\transformations\abs\SubstringTransformationsPlugin;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles the substring transformation for text plain
*
* @package PhpMyAdmin-Transformations
* @subpackage Substring
*/
class TextPlainSubstring extends SubstringTransformationsPlugin
{
/**
* 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";
}
}