|  |  | @ -1,15 +1,16 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  | <?php |  |  |  | <?php | 
			
		
	
		
		
			
				
					
					|  |  |  | /** |  |  |  | /** | 
			
		
	
		
		
			
				
					
					|  |  |  |  * CValidator class file. |  |  |  |  * Validator class file. | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  * |  |  |  |  * | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @author Qiang Xue <qiang.xue@gmail.com> |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @link http://www.yiiframework.com/ |  |  |  |  * @link http://www.yiiframework.com/ | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @copyright Copyright © 2008-2011 Yii Software LLC |  |  |  |  * @copyright Copyright © 2008-2012 Yii Software LLC | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  * @license http://www.yiiframework.com/license/ |  |  |  |  * @license http://www.yiiframework.com/license/ | 
			
		
	
		
		
			
				
					
					|  |  |  |  */ |  |  |  |  */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | namespace yii\validators; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | /** |  |  |  | /** | 
			
		
	
		
		
			
				
					
					|  |  |  |  * CValidator is the base class for all validators. |  |  |  |  * Validator is the base class for all validators. | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  * |  |  |  |  * | 
			
		
	
		
		
			
				
					
					|  |  |  |  * Child classes must implement the {@link validateAttribute} method. |  |  |  |  * Child classes must implement the {@link validateAttribute} method. | 
			
		
	
		
		
			
				
					
					|  |  |  |  * |  |  |  |  * | 
			
		
	
	
		
		
			
				
					|  |  | @ -52,33 +53,40 @@ | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @author Qiang Xue <qiang.xue@gmail.com> |  |  |  |  * @author Qiang Xue <qiang.xue@gmail.com> | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @version $Id: CValidator.php 3160 2011-04-03 01:08:23Z qiang.xue $ |  |  |  |  * @version $Id: CValidator.php 3160 2011-04-03 01:08:23Z qiang.xue $ | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @package system.validators |  |  |  |  * @package system.validators | 
			
		
	
		
		
			
				
					
					|  |  |  |  * @since 1.0 |  |  |  |  * @since 2.0 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  */ |  |  |  |  */ | 
			
		
	
		
		
			
				
					
					|  |  |  | abstract class CValidator extends CComponent |  |  |  | abstract class Validator extends \yii\base\Component | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | { |  |  |  | { | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var array list of built-in validators (name=>class) |  |  |  | 	 * @var array list of built-in validators (name => class or configuration) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public static $builtInValidators = array( |  |  |  | 	public static $builtInValidators = array( | 
			
		
	
		
		
			
				
					
					|  |  |  | 		'required' => 'CRequiredValidator', |  |  |  | 		'required' => '\yii\validators\RequiredValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'filter' => 'CFilterValidator', |  |  |  | 		'filter' => '\yii\validators\FilterValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'match' => 'CRegularExpressionValidator', |  |  |  | 		'match' => '\yii\validators\RegularExpressionValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'email' => 'CEmailValidator', |  |  |  | 		'email' => '\yii\validators\EmailValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'url' => 'CUrlValidator', |  |  |  | 		'url' => '\yii\validators\UrlValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'unique' => 'CUniqueValidator', |  |  |  | 		'compare' => '\yii\validators\CompareValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'compare' => 'CCompareValidator', |  |  |  | 		'length' => '\yii\validators\StringValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'length' => 'CStringValidator', |  |  |  | 		'in' => '\yii\validators\RangeValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'in' => 'CRangeValidator', |  |  |  | 		'numerical' => '\yii\validators\NumberValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'numerical' => 'CNumberValidator', |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'captcha' => 'CCaptchaValidator', |  |  |  | 		'boolean' => '\yii\validators\BooleanValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'type' => 'CTypeValidator', |  |  |  | 		'integer' => '\yii\validators\IntegerValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'file' => 'CFileValidator', |  |  |  | 		'float' => '\yii\validators\FloatValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'default' => 'CDefaultValueValidator', |  |  |  | 		'string' => '\yii\validators\StringValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'exist' => 'CExistValidator', |  |  |  | 		'date' => '\yii\validators\DateValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'boolean' => 'CBooleanValidator', |  |  |  | 
 | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'safe' => 'CSafeValidator', |  |  |  | 		'captcha' => '\yii\validators\CaptchaValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'unsafe' => 'CUnsafeValidator', |  |  |  | 		'type' => '\yii\validators\TypeValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		'date' => 'CDateValidator', |  |  |  | 		'file' => '\yii\validators\FileValidator', | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		'default' => '\yii\validators\DefaultValueValidator', | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		'unique' => '\yii\validators\UniqueValidator', | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		'exist' => '\yii\validators\ExistValidator', | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		'safe' => '\yii\validators\SafeValidator', | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		'unsafe' => '\yii\validators\UnsafeValidator', | 
			
		
	
		
		
			
				
					
					|  |  |  | 	); |  |  |  | 	); | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
	
		
		
			
				
					|  |  | @ -86,126 +94,149 @@ abstract class CValidator extends CComponent | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $attributes; |  |  |  | 	public $attributes; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var string the user-defined error message. Different validators may define various |  |  |  | 	 * @var string the user-defined error message. Error message may contain some placeholders | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * placeholders in the message that are to be replaced with actual values. All validators |  |  |  | 	 * that will be replaced with the actual values by the validator. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * recognize "{attribute}" placeholder, which will be replaced with the label of the attribute. |  |  |  | 	 * The `{attribute}` and `{value}` are placeholders supported by all validators. | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * They will be replaced with the attribute label and value, respectively. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $message; |  |  |  | 	public $message; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var boolean whether this validation rule should be skipped if when there is already a validation |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * error for the current attribute. Defaults to false. |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.1.1 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $skipOnError = false; |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var array list of scenarios that the validator should be applied. |  |  |  | 	 * @var array list of scenarios that the validator should be applied. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Each array value refers to a scenario name with the same name as its array key. |  |  |  | 	 * Each array value refers to a scenario name with the same name as its array key. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $on; |  |  |  | 	public $on; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var boolean whether attributes listed with this validator should be considered safe for massive assignment. |  |  |  | 	 * @var boolean whether this validation rule should be skipped if the attribute being validated | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Defaults to true. |  |  |  | 	 * already has some validation error according to the previous rules. Defaults to false. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.1.4 |  |  |  | 	 */ | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	public $skipOnError = false; | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @var boolean whether attributes listed with this validator should be considered safe for | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * massive assignment. Defaults to true. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $safe = true; |  |  |  | 	public $safe = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @var boolean whether to perform client-side validation. Defaults to true. |  |  |  | 	 * @var boolean whether to enable client-side validation. Defaults to true. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Please refer to {@link CActiveForm::enableClientValidation} for more details about client-side validation. |  |  |  | 	 * Please refer to [[\yii\web\ActiveForm::enableClientValidation]] for more details about | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.1.7 |  |  |  | 	 * client-side validation. | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public $enableClientValidation = true; |  |  |  | 	public $enableClientValidation = true; | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * Validates a value. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * Child classes should override this method to implement the actual validation logic. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @param mixed $value the value being validated. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @return boolean whether the value is valid. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	abstract public function validateValue($value); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Validates a single attribute. |  |  |  | 	 * Validates a single attribute. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * This method should be overridden by child classes. |  |  |  | 	 * The default implementation will call [[validateValue]] to determine if | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param CModel $object the data object being validated |  |  |  | 	 * the attribute value is valid or not. If not, the [[message|error message]] | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * will be added to the model object. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @param \yii\base\Model $object the data object being validated | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $attribute the name of the attribute to be validated. |  |  |  | 	 * @param string $attribute the name of the attribute to be validated. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	abstract protected function validateAttribute($object, $attribute); |  |  |  | 	public function validateAttribute($object, $attribute) | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 	{ | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		if (!$this->validateValue($object->$attribute)) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			$this->addError($object, $attribute, $this->message); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Creates a validator object. |  |  |  | 	 * Creates a validator object. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $name the name or class of the validator |  |  |  | 	 * @param string $type the validator type. This can be a method name, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param CModel $object the data object being validated that may contain the inline validation method |  |  |  | 	 * a built-in validator name, a class name, or a path alias of validator class. | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @param \yii\base\Model $object the data object being validated. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param mixed $attributes list of attributes to be validated. This can be either an array of |  |  |  | 	 * @param mixed $attributes list of attributes to be validated. This can be either an array of | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * the attribute names or a string of comma-separated attribute names. |  |  |  | 	 * the attribute names or a string of comma-separated attribute names. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param array $params initial values to be applied to the validator properties |  |  |  | 	 * @param array $params initial values to be applied to the validator properties | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @return CValidator the validator |  |  |  | 	 * @return Validator the validator | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public static function createValidator($name, $object, $attributes, $params = array()) |  |  |  | 	public static function createValidator($type, $object, $attributes, $params = array()) | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (is_string($attributes)) |  |  |  | 		if (!is_array($attributes)) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			$attributes = preg_split('/[\s,]+/', $attributes, -1, PREG_SPLIT_NO_EMPTY); |  |  |  | 			$attributes = preg_split('/[\s,]+/', $attributes, -1, PREG_SPLIT_NO_EMPTY); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (isset($params['on'])) |  |  |  | 		if (isset($params['on'])) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		{ |  |  |  | 			if (is_array($params['on'])) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			if (is_array($params['on'])) |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 				$on = $params['on']; |  |  |  | 				$on = $params['on']; | 
			
		
	
		
		
			
				
					
					|  |  |  | 			else |  |  |  | 			} | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 				$on = preg_split('/[\s,]+/', $params['on'], -1, PREG_SPLIT_NO_EMPTY); |  |  |  | 				$on = preg_split('/[\s,]+/', $params['on'], -1, PREG_SPLIT_NO_EMPTY); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			$params['on'] = empty($on) ? array() : array_combine($on, $on); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		else { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			$params['on'] = array(); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 			$on = array(); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (method_exists($object, $name)) |  |  |  | 		if (method_exists($object, $type)) {  // method-based validator | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		{ |  |  |  | 			$config = array( | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$validator = new CInlineValidator; |  |  |  | 				'class'	=> '\yii\validators\InlineValidator', | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$validator->attributes = $attributes; |  |  |  | 				'method' => $type, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$validator->method = $name; |  |  |  | 				'attributes' => $attributes, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$validator->params = $params; |  |  |  | 			); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			if (isset($params['skipOnError'])) |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 				$validator->skipOnError = $params['skipOnError']; |  |  |  |  | 
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  | 		else { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		{ |  |  |  | 			if (is_string($type) && isset(self::$builtInValidators[$type])) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$params['attributes'] = $attributes; |  |  |  | 				$type = self::$builtInValidators[$type]; | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			if (isset(self::$builtInValidators[$name])) |  |  |  | 			} | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 				$className = Yii::import(self::$builtInValidators[$name], true); |  |  |  | 			$config = array( | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			else |  |  |  | 				'class'	=> $type, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 				$className = Yii::import($name, true); |  |  |  | 				'attributes' => $attributes, | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			$validator = new $className; |  |  |  | 			); | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			foreach ($params as $name => $value) |  |  |  | 		} | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 				$validator->$name = $value; |  |  |  | 		$validator = \Yii::createComponent($config); | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		foreach ($params as $name => $value) { | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			$validator->$name = $value; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 		$validator->on = empty($on) ? array() : array_combine($on, $on); |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return $validator; |  |  |  | 		return $validator; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Validates the specified object. |  |  |  | 	 * Validates the specified object. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param CModel $object the data object being validated |  |  |  | 	 * @param \yii\base\Model $object the data object being validated | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 * @param array $attributes the list of attributes to be validated. Defaults to null, |  |  |  | 	 * @param array $attributes the list of attributes to be validated. Defaults to null, | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * meaning every attribute listed in {@link attributes} will be validated. |  |  |  | 	 * meaning every attribute listed in [[attributes]] will be validated. | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public function validate($object, $attributes = null) |  |  |  | 	public function validate($object, $attributes = null) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		if (is_array($attributes)) |  |  |  | 		if (is_array($attributes)) { | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 			$attributes = array_intersect($this->attributes, $attributes); |  |  |  | 			$attributes = array_intersect($this->attributes, $attributes); | 
			
		
	
		
		
			
				
					
					|  |  |  | 		else |  |  |  | 		} | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		else { | 
			
		
	
		
		
			
				
					
					|  |  |  | 			$attributes = $this->attributes; |  |  |  | 			$attributes = $this->attributes; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		foreach ($attributes as $attribute) |  |  |  | 		} | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 		{ |  |  |  | 		foreach ($attributes as $attribute) { | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 			if (!$this->skipOnError || !$object->hasErrors($attribute)) |  |  |  | 			if (!$this->skipOnError || !$object->hasErrors($attribute)) { | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 				$this->validateAttribute($object, $attribute); |  |  |  | 				$this->validateAttribute($object, $attribute); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 			} | 
			
		
	
		
		
			
				
					
					|  |  |  | 		} |  |  |  | 		} | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Returns the JavaScript needed for performing client-side validation. |  |  |  | 	 * Returns the JavaScript needed for performing client-side validation. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Do not override this method if the validator does not support client-side validation. |  |  |  | 	 * | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Two predefined JavaScript variables can be used: |  |  |  | 	 * You may override this method to return the JavaScript validation code if | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <ul> |  |  |  | 	 * the validator can support client-side validation. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <li>value: the value to be validated</li> |  |  |  | 	 * | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <li>messages: an array used to hold the validation error messages for the value</li> |  |  |  | 	 * The following JavaScript variables are predefined and can be used in the validation code: | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * </ul> |  |  |  | 	 * | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param CModel $object the data object being validated |  |  |  | 	 * - `attribute`: the name of the attribute being validated. | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * - `value`: the value being validated. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * - `messages`: an array used to hold the validation error messages for the attribute. | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @param \yii\base\Model $object the data object being validated | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $attribute the name of the attribute to be validated. |  |  |  | 	 * @param string $attribute the name of the attribute to be validated. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @return string the client-side validation script. Null if the validator does not support client-side validation. |  |  |  | 	 * @return string the client-side validation script. Null if the validator does not support | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @see CActiveForm::enableClientValidation |  |  |  | 	 * client-side validation. | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.1.7 |  |  |  | 	 * @see enableClientValidation | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 	 * @see \yii\web\ActiveForm::enableClientValidation | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public function clientValidateAttribute($object, $attribute) |  |  |  | 	public function clientValidateAttribute($object, $attribute) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
	
		
		
			
				
					|  |  | @ -214,13 +245,12 @@ abstract class CValidator extends CComponent | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Returns a value indicating whether the validator applies to the specified scenario. |  |  |  | 	 * Returns a value indicating whether the validator applies to the specified scenario. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * A validator applies to a scenario as long as any of the following conditions is met: |  |  |  | 	 * A validator applies to a scenario as long as any of the following conditions is met: | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <ul> |  |  |  | 	 * | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <li>the validator's "on" property is empty</li> |  |  |  | 	 * - the validator's `on` property is empty | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * <li>the validator's "on" property contains the specified scenario</li> |  |  |  | 	 * - the validator's `on` property contains the specified scenario | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | 	 * </ul> |  |  |  | 	 * | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $scenario scenario name |  |  |  | 	 * @param string $scenario scenario name | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @return boolean whether the validator applies to the specified scenario. |  |  |  | 	 * @return boolean whether the validator applies to the specified scenario. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.0.2 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	public function applyTo($scenario) |  |  |  | 	public function applyTo($scenario) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
	
		
		
			
				
					|  |  | @ -228,9 +258,9 @@ abstract class CValidator extends CComponent | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | 	/** |  |  |  | 	/** | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * Adds an error about the specified attribute to the active record. |  |  |  | 	 * Adds an error about the specified attribute to the model object. | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 * This is a helper method that performs message selection and internationalization. |  |  |  | 	 * This is a helper method that performs message selection and internationalization. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param CModel $object the data object being validated |  |  |  | 	 * @param \yii\base\Model $object the data object being validated | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $attribute the attribute being validated |  |  |  | 	 * @param string $attribute the attribute being validated | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param string $message the error message |  |  |  | 	 * @param string $message the error message | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param array $params values for the placeholders in the error message |  |  |  | 	 * @param array $params values for the placeholders in the error message | 
			
		
	
	
		
		
			
				
					|  |  | @ -238,6 +268,7 @@ abstract class CValidator extends CComponent | 
			
		
	
		
		
			
				
					
					|  |  |  | 	protected function addError($object, $attribute, $message, $params = array()) |  |  |  | 	protected function addError($object, $attribute, $message, $params = array()) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		$params['{attribute}'] = $object->getAttributeLabel($attribute); |  |  |  | 		$params['{attribute}'] = $object->getAttributeLabel($attribute); | 
			
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 		$params['{value}'] = $object->$attribute; | 
			
		
	
		
		
			
				
					
					|  |  |  | 		$object->addError($attribute, strtr($message, $params)); |  |  |  | 		$object->addError($attribute, strtr($message, $params)); | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | @ -248,11 +279,10 @@ abstract class CValidator extends CComponent | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param mixed $value the value to be checked |  |  |  | 	 * @param mixed $value the value to be checked | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @param boolean $trim whether to perform trimming before checking if the string is empty. Defaults to false. |  |  |  | 	 * @param boolean $trim whether to perform trimming before checking if the string is empty. Defaults to false. | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @return boolean whether the value is empty |  |  |  | 	 * @return boolean whether the value is empty | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 * @since 1.0.9 |  |  |  |  | 
			
		
	
		
		
			
				
					
					|  |  |  | 	 */ |  |  |  | 	 */ | 
			
		
	
		
		
			
				
					
					|  |  |  | 	protected function isEmpty($value, $trim = false) |  |  |  | 	protected function isEmpty($value, $trim = false) | 
			
		
	
		
		
			
				
					
					|  |  |  | 	{ |  |  |  | 	{ | 
			
		
	
		
		
			
				
					
					|  |  |  | 		return $value === null || $value === array() || $value === '' || $trim && is_scalar($value) && trim($value) === ''; |  |  |  | 		return $value === null || $value === array() || $value === '' | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  |  |  |  |  | 				|| $trim && is_scalar($value) && trim($value) === ''; | 
			
		
	
		
		
			
				
					
					|  |  |  | 	} |  |  |  | 	} | 
			
		
	
		
		
			
				
					
					|  |  |  | } |  |  |  | } | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  |  | 
			
		
	
	
		
		
			
				
					|  |  | 
 |