Sha256: 4137043b50ae6e778b4353eda94eb4a629543ba8aed6e7abb81505548889d322
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 Date Format Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage DateFormat */ if (! defined('PHPMYADMIN')) { exit; } /* Get the date format transformations interface */ require_once 'libraries/plugins/transformations/abstract/' . 'DateFormatTransformationsPlugin.class.php'; /** * Handles the date format transformation for text plain * * @package PhpMyAdmin-Transformations * @subpackage DateFormat */ class Text_Plain_Dateformat extends DateFormatTransformationsPlugin { /** * 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