From 8ed299a13db3afc220627cefee576135dfadfe7a Mon Sep 17 00:00:00 2001 From: airox Date: Thu, 18 Jan 2007 15:37:32 +0000 Subject: [PATCH] Minimum length for a string validator (usefull for passwords or usernames for example) --- lib/Doctrine/Validator/Minlength.php | 48 ++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 lib/Doctrine/Validator/Minlength.php diff --git a/lib/Doctrine/Validator/Minlength.php b/lib/Doctrine/Validator/Minlength.php new file mode 100644 index 000000000..7a3636020 --- /dev/null +++ b/lib/Doctrine/Validator/Minlength.php @@ -0,0 +1,48 @@ +. + */ + +/** + * Doctrine_Validator_Regexp + * + * @package Doctrine + * @category Object Relational Mapping + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + * @author Gijs van Dulmen + */ +class Doctrine_Validator_Minlength { + /** + * @param Doctrine_Record $record + * @param string $key + * @param mixed $value + * @param string $args + * @return boolean + */ + public function validate(Doctrine_Record $record, $key, $value, $args) { + if(isset($args) && strlen( $value ) < $args) + return false; + + return true; + } +} +