You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					100 lines
				
				3.0 KiB
			
		
		
			
		
	
	
					100 lines
				
				3.0 KiB
			| 
											14 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * @link http://www.yiiframework.com/
 | ||
| 
											13 years ago
										 |  * @copyright Copyright (c) 2008 Yii Software LLC
 | ||
| 
											14 years ago
										 |  * @license http://www.yiiframework.com/license/
 | ||
|  |  */
 | ||
|  | 
 | ||
| 
											14 years ago
										 | namespace yii\validators;
 | ||
|  | 
 | ||
| 
											14 years ago
										 | /**
 | ||
| 
											14 years ago
										 |  * InlineValidator represents a validator which is defined as a method in the object being validated.
 | ||
|  |  *
 | ||
|  |  * The validation method must have the following signature:
 | ||
|  |  *
 | ||
|  |  * ~~~
 | ||
|  |  * function foo($attribute, $params)
 | ||
|  |  * ~~~
 | ||
|  |  *
 | ||
|  |  * where `$attribute` refers to the name of the attribute being validated, while `$params`
 | ||
|  |  * is an array representing the additional parameters supplied in the validation rule.
 | ||
| 
											14 years ago
										 |  *
 | ||
|  |  * @author Qiang Xue <qiang.xue@gmail.com>
 | ||
| 
											14 years ago
										 |  * @since 2.0
 | ||
| 
											14 years ago
										 |  */
 | ||
| 
											14 years ago
										 | class InlineValidator extends Validator
 | ||
| 
											14 years ago
										 | {
 | ||
|  | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var string|\Closure an anonymous function or the name of a model class method that will be
 | ||
|  | 	 * called to perform the actual validation. Note that if you use anonymous function, you cannot
 | ||
|  | 	 * use `$this` in it unless you are using PHP 5.4 or above.
 | ||
| 
											14 years ago
										 | 	 */
 | ||
|  | 	public $method;
 | ||
|  | 	/**
 | ||
|  | 	 * @var array additional parameters that are passed to the validation method
 | ||
|  | 	 */
 | ||
|  | 	public $params;
 | ||
| 
											14 years ago
										 | 	/**
 | ||
| 
											13 years ago
										 | 	 * @var string|\Closure an anonymous function or the name of a model class method that returns the client validation code.
 | ||
|  | 	 * The signature of the method should be like the following:
 | ||
| 
											14 years ago
										 | 	 *
 | ||
|  | 	 * ~~~
 | ||
|  | 	 * function foo($attribute)
 | ||
|  | 	 * {
 | ||
|  | 	 *     return "javascript";
 | ||
|  | 	 * }
 | ||
|  | 	 * ~~~
 | ||
|  | 	 *
 | ||
|  | 	 * where `$attribute` refers to the attribute name to be validated.
 | ||
| 
											13 years ago
										 | 	 *
 | ||
|  | 	 * Please refer to [[clientValidateAttribute()]] for details on how to return client validation code.
 | ||
| 
											14 years ago
										 | 	 */
 | ||
|  | 	public $clientValidate;
 | ||
| 
											14 years ago
										 | 
 | ||
|  | 	/**
 | ||
|  | 	 * Validates the attribute of the object.
 | ||
| 
											14 years ago
										 | 	 * @param \yii\base\Model $object the object being validated
 | ||
| 
											14 years ago
										 | 	 * @param string $attribute the attribute being validated
 | ||
|  | 	 */
 | ||
| 
											14 years ago
										 | 	public function validateAttribute($object, $attribute)
 | ||
| 
											14 years ago
										 | 	{
 | ||
|  | 		$method = $this->method;
 | ||
| 
											13 years ago
										 | 		if (is_string($method)) {
 | ||
|  | 			$method = array($object, $method);
 | ||
|  | 		}
 | ||
|  | 		call_user_func($method, $attribute, $this->params);
 | ||
| 
											14 years ago
										 | 	}
 | ||
| 
											14 years ago
										 | 
 | ||
|  | 	/**
 | ||
|  | 	 * Returns the JavaScript needed for performing client-side validation.
 | ||
|  | 	 *
 | ||
|  | 	 * You may override this method to return the JavaScript validation code if
 | ||
|  | 	 * the validator can support client-side validation.
 | ||
|  | 	 *
 | ||
|  | 	 * The following JavaScript variables are predefined and can be used in the validation code:
 | ||
|  | 	 *
 | ||
|  | 	 * - `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.
 | ||
|  | 	 * @return string the client-side validation script. Null if the validator does not support
 | ||
|  | 	 * client-side validation.
 | ||
|  | 	 * @see enableClientValidation
 | ||
|  | 	 * @see \yii\web\ActiveForm::enableClientValidation
 | ||
|  | 	 */
 | ||
|  | 	public function clientValidateAttribute($object, $attribute)
 | ||
|  | 	{
 | ||
| 
											14 years ago
										 | 		if ($this->clientValidate !== null) {
 | ||
| 
											14 years ago
										 | 			$method = $this->clientValidate;
 | ||
| 
											13 years ago
										 | 			if (is_string($method)) {
 | ||
|  | 				$method = array($object, $method);
 | ||
|  | 			}
 | ||
|  | 			return call_user_func($method, $attribute);
 | ||
| 
											13 years ago
										 | 		} else {
 | ||
|  | 			return null;
 | ||
| 
											14 years ago
										 | 		}
 | ||
|  | 	}
 | ||
| 
											13 years ago
										 | }
 |