1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/Doctrine/Validator/Range.php

22 lines
495 B
PHP
Raw Normal View History

2006-05-30 12:56:40 +04:00
<?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;
}
}
?>