Sha256: d27d145a44ce683a4e90b10c9db2932795282deaa1ee3aadd60c3a096d809322
Contents?: true
Size: 928 Bytes
Versions: 2
Compression:
Stored size: 928 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Text Plain Image Link Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage ImageLink */ if (! defined('PHPMYADMIN')) { exit; } /* Get the image link transformations interface */ require_once 'libraries/plugins/transformations/abstract/' . 'TextImageLinkTransformationsPlugin.class.php'; /** * Handles the image link transformation for text plain * * @package PhpMyAdmin-Transformations * @subpackage ImageLink */ class Text_Plain_Imagelink extends TextImageLinkTransformationsPlugin { /** * Gets the plugin`s MIME type * * @return string */ public static function getMIMEType() { return "Text"; } /** * Gets the plugin`s MIME subtype * * @return string */ public static function getMIMESubtype() { return "Plain"; } } ?>
Version data entries
2 entries across 2 versions & 1 rubygems