TEMPLATE 1000 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. // vim: expandtab sw=4 ts=4 sts=4:
  3. /**
  4. * This file contains the basic structure for a specific MIME Type and Subtype
  5. * transformations class.
  6. * For instructions, read the documentation
  7. *
  8. * @package PhpMyAdmin-Transformations
  9. * @subpackage [TransformationName]
  10. */
  11. declare(strict_types=1);
  12. namespace PhpMyAdmin\Plugins\Transformations;
  13. use PhpMyAdmin\Plugins\Transformations\Abs\[TransformationName]TransformationsPlugin;
  14. /**
  15. * Handles the [TransformationName] transformation for [MIMEType] - [MIMESubtype]
  16. *
  17. * @package PhpMyAdmin
  18. */
  19. class [MIMEType][MIMESubtype][TransformationName]
  20. extends [TransformationName]TransformationsPlugin
  21. {
  22. /**
  23. * Gets the plugin`s MIME type
  24. *
  25. * @return string
  26. */
  27. public static function getMIMEType()
  28. {
  29. return "[MIMEType]";
  30. }
  31. /**
  32. * Gets the plugin`s MIME subtype
  33. *
  34. * @return string
  35. */
  36. public static function getMIMESubtype()
  37. {
  38. return "[MIMESubtype]";
  39. }
  40. }
  41. ?>