Sha256: 4680c2aa7e0b77b7760d7dae5edf6b3d722610850a58c8ddc608760fa15dedfd
Contents?: true
Size: 1020 Bytes
Versions: 2
Compression:
Stored size: 1020 Bytes
Contents
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Text Plain Regex Validation Input Transformations plugin for phpMyAdmin * * @package PhpMyAdmin-Transformations * @subpackage RegexValidation */ if (! defined('PHPMYADMIN')) { exit; } /* Get the regex validation transformations class */ require_once 'libraries/plugins/transformations/abstract/' . 'RegexValidationTransformationsPlugin.class.php'; /** * Handles the input regex validation transformation for text plain. * Has one option: the regular expression * * @package PhpMyAdmin-Transformations * @subpackage RegexValidation */ class Text_Plain_RegexValidation extends RegexValidationTransformationsPlugin { /** * 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