37 lines
870 B
PHP
37 lines
870 B
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the Propel package.
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* @license MIT License
|
|
*/
|
|
|
|
/**
|
|
* A validator for minimum string length.
|
|
*
|
|
* <code>
|
|
* <column name="password" type="VARCHAR" size="34" required="true" />
|
|
*
|
|
* <validator column="password">
|
|
* <rule name="minLength" value="5" message="Passwort must be at least ${value} characters !" />
|
|
* </validator>
|
|
* </code>
|
|
*
|
|
* @author Michael Aichler <aichler@mediacluster.de>
|
|
* @version $Revision: 1612 $
|
|
* @package propel.runtime.validator
|
|
*/
|
|
class MinLengthValidator implements BasicValidator
|
|
{
|
|
|
|
/**
|
|
* @see BasicValidator::isValid()
|
|
*/
|
|
public function isValid (ValidatorMap $map, $str)
|
|
{
|
|
return strlen($str) >= intval($map->getValue());
|
|
}
|
|
}
|