12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Image JPEG Upload Input Transformations plugin for phpMyAdmin
- */
- declare(strict_types=1);
- namespace PhpMyAdmin\Plugins\Transformations\Input;
- use PhpMyAdmin\Plugins\Transformations\Abs\ImageUploadTransformationsPlugin;
- /**
- * Handles the image upload input transformation for JPEG.
- * Has two option: width & height of the thumbnail
- */
- class Image_JPEG_Upload extends ImageUploadTransformationsPlugin
- {
- /**
- * Gets the plugin`s MIME type
- *
- * @return string
- */
- public static function getMIMEType()
- {
- return 'Image';
- }
- /**
- * Gets the plugin`s MIME subtype
- *
- * @return string
- */
- public static function getMIMESubtype()
- {
- return 'JPEG';
- }
- }
|