38 lines
692 B
PHP
38 lines
692 B
PHP
<?php
|
|
/**
|
|
* Text Plain Link Transformations plugin for phpMyAdmin
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpMyAdmin\Plugins\Transformations;
|
|
|
|
use PhpMyAdmin\Plugins\Transformations\Abs\TextLinkTransformationsPlugin;
|
|
|
|
/**
|
|
* Handles the link transformation for text plain
|
|
*/
|
|
// @codingStandardsIgnoreLine
|
|
class Text_Plain_Link 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';
|
|
}
|
|
}
|