Application_Octetstream_Hex.php 881 B

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