sintonia/library/propel/runtime/lib/validator/ValidValuesValidator.php

34 lines
869 B
PHP

<?php
/**
* This file is part of the Propel package.
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @license MIT License
*/
/**
* A validator for valid values (e.g. for enum fields)
*
* <code>
* <column name="address_type" type="VARCHAR" required="true" default="delivery" />
*
* <validator column="address_type">
* <rule name="validValues" value="account|delivery" message="Please select a valid address type." />
* </validator>
* </code>
*
* @author Michael Aichler <aichler@mediacluster.de>
* @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()));
}
}