* * * * * * * * @author Michael Aichler * @version $Revision: 1612 $ * @package propel.runtime.validator */ class MaxLengthValidator implements BasicValidator { public function isValid (ValidatorMap $map, $str) { return strlen($str) <= intval($map->getValue()); } }