*
*
*
*
*
*
*
* @author Michael Aichler
* @version $Revision: 1612 $
* @package propel.runtime.validator
*/
class ValidValuesValidator implements BasicValidator
{
public function isValid (ValidatorMap $map, $str)
{
return in_array($str, preg_split("/[|,]/", $map->getValue()));
}
}