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