Sha256: b52a9a1a97bff5bcd118d40e9aa51df34ea15dfd0b2909d2d7c7c2081fea3764
Contents?: true
Size: 980 Bytes
Versions: 2
Compression:
Stored size: 980 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Image JPEG Upload Input Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage ImageUpload */ if (! defined('PHPMYADMIN')) { exit; } /* Get the image upload transformations class */ require_once 'libraries/plugins/transformations/abstract/' . 'ImageUploadTransformationsPlugin.class.php'; /** * Handles the image upload input transformation for JPEG. * Has two option: width & height of the thumbnail * * @package PhpMyAdmin-Transformations * @subpackage ImageUpload */ 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"; } } ?>
Version data entries
2 entries across 2 versions & 1 rubygems