2006-04-13 20:37:28 +00:00
|
|
|
<?php
|
|
|
|
class Doctrine_Validator_Date {
|
|
|
|
/**
|
|
|
|
* @param Doctrine_Record $record
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
2006-05-24 22:33:48 +00:00
|
|
|
* @param string $args
|
2006-04-13 20:37:28 +00:00
|
|
|
* @return boolean
|
|
|
|
*/
|
2006-05-24 22:33:48 +00:00
|
|
|
public function validate(Doctrine_Record $record, $key, $value, $args) {
|
2006-04-13 20:37:28 +00:00
|
|
|
return checkdate($value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|