1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/Doctrine/Validator/Enum.php
doctrine e1548625b8
2006-05-30 09:12:57 +00:00

24 lines
527 B
PHP

<?php
class Doctrine_Validator_Enum {
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
$max = substr_count($args, "-");
$int = (int) $value;
if($int != $value)
return false;
if($int < 0 || $int > $max)
return false;
return true;
}
}
?>