1
0
mirror of synced 2025-01-19 15:01:40 +03:00
doctrine2/classes/Validator/Notblank.class.php

22 lines
616 B
PHP
Raw Normal View History

2006-04-13 20:37:28 +00:00
<?php
2006-04-16 08:41:45 +00:00
class Doctrine_Validator_Notblank {
2006-04-13 20:37:28 +00:00
/**
* @param Doctrine_Record $record
* @param string $key
* @param mixed $value
* @param string $args
2006-04-13 20:37:28 +00:00
* @return boolean
*/
public function validate(Doctrine_Record $record, $key, $value, $args) {
2006-04-13 20:37:28 +00:00
$string = str_replace("\n","",$value);
$string = str_replace("\r","",$string);
$string = str_replace("\t","",$string);
$string = str_replace("\s","",$string);
$string = str_replace(" ","",$string);
if($string == "") return false;
return true;
2006-04-13 20:37:28 +00:00
}
}
?>