Text_Plain_Link.php 837 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Text Plain Link Transformations plugin for phpMyAdmin
  5. *
  6. * @package PhpMyAdmin-Transformations
  7. * @subpackage Link
  8. */
  9. namespace PhpMyAdmin\Plugins\Transformations;
  10. use PhpMyAdmin\Plugins\Transformations\Abs\TextLinkTransformationsPlugin;
  11. /**
  12. * Handles the link transformation for text plain
  13. *
  14. * @package PhpMyAdmin-Transformations
  15. * @subpackage Link
  16. */
  17. // @codingStandardsIgnoreLine
  18. class Text_Plain_Link extends TextLinkTransformationsPlugin
  19. {
  20. /**
  21. * Gets the plugin`s MIME type
  22. *
  23. * @return string
  24. */
  25. public static function getMIMEType()
  26. {
  27. return "Text";
  28. }
  29. /**
  30. * Gets the plugin`s MIME subtype
  31. *
  32. * @return string
  33. */
  34. public static function getMIMESubtype()
  35. {
  36. return "Plain";
  37. }
  38. }