1
0
mirror of synced 2024-12-13 14:56:01 +03:00
doctrine2/Doctrine/Validator/Range.php
2006-05-30 08:56:40 +00:00

22 lines
495 B
PHP

<?php
class Doctrine_Validator_Range {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
$e = explode("-",$args);
if($value < $e[0])
return false;
if(isset($e[1]) && $value > $e[1])
return false;
return true;
}
}
?>