2006-05-30 12:56:40 +04:00
|
|
|
<?php
|
2006-09-13 22:19:24 +04:00
|
|
|
class Doctrine_Validator_Nospace {
|
2006-05-30 12:56:40 +04:00
|
|
|
/**
|
|
|
|
* @param Doctrine_Record $record
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param string $args
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function validate(Doctrine_Record $record, $key, $value, $args) {
|
2006-09-13 22:19:24 +04:00
|
|
|
return ($value === null || ! preg_match('/\s\t\r\n/',$value));
|
2006-05-30 12:56:40 +04:00
|
|
|
}
|
|
|
|
}
|
2006-09-04 02:46:30 +04:00
|
|
|
|