Sha256: ccaa1d4a7fdedc17d523d63db7c0018c539aea29dcedf2474cb8084c637e20b4
Contents?: true
Size: 909 Bytes
Versions: 2
Compression:
Stored size: 909 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Text Plain External Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage External */ if (! defined('PHPMYADMIN')) { exit; } /* Get the external transformations interface */ require_once 'libraries/plugins/transformations/abstract/' . 'ExternalTransformationsPlugin.class.php'; /** * Handles the external transformation for text plain * * @package PhpMyAdmin-Transformations * @subpackage External */ class Text_Plain_External extends ExternalTransformationsPlugin { /** * 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