mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-20 01:09:48 +00:00
53 lines
1.5 KiB
PHP
53 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* CRangeValidator class file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008-2009 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
/**
|
|
* CRangeValidator validates that the attribute value is among the list (specified via {@link range}).
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @version $Id: CRangeValidator.php 433 2008-12-30 22:59:17Z qiang.xue $
|
|
* @package system.validators
|
|
* @since 1.0
|
|
*/
|
|
class CRangeValidator extends CValidator
|
|
{
|
|
/**
|
|
* @var array list of valid values that the attribute value should be among
|
|
*/
|
|
public $range;
|
|
/**
|
|
* @var boolean whether the comparison is strict (both type and value must be the same)
|
|
*/
|
|
public $strict=false;
|
|
/**
|
|
* @var boolean whether the attribute value can be null or empty. Defaults to true,
|
|
* meaning that if the attribute is empty, it is considered valid.
|
|
*/
|
|
public $allowEmpty=true;
|
|
|
|
/**
|
|
* Validates the attribute of the object.
|
|
* If there is any error, the error message is added to the object.
|
|
* @param CModel the object being validated
|
|
* @param string the attribute being validated
|
|
*/
|
|
protected function validateAttribute($object,$attribute)
|
|
{
|
|
$value=$object->$attribute;
|
|
if($this->allowEmpty && ($value===null || $value===''))
|
|
return;
|
|
if(is_array($this->range) && !in_array($value,$this->range,$this->strict))
|
|
{
|
|
$message=$this->message!==null?$this->message:Yii::t('yii','{attribute} is not in the list.');
|
|
$this->addError($object,$attribute,$message);
|
|
}
|
|
}
|
|
}
|
|
|