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.
		
		
		
		
		
			
		
			
				
					
					
						
							63 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							63 lines
						
					
					
						
							1.1 KiB
						
					
					
				<?php | 
						|
 | 
						|
namespace yiiunit\data\validators\models; | 
						|
 | 
						|
use yii\base\Model; | 
						|
 | 
						|
class FakedValidationModel extends Model | 
						|
{ | 
						|
	public $val_attr_a; | 
						|
	public $val_attr_b; | 
						|
	public $val_attr_c; | 
						|
	public $val_attr_d; | 
						|
	private $attr = []; | 
						|
 | 
						|
	/** | 
						|
	 * @param array $attributes | 
						|
	 * @return self | 
						|
	 */ | 
						|
	public static function createWithAttributes($attributes = []) | 
						|
	{ | 
						|
		$m = new static(); | 
						|
		foreach ($attributes as $attribute => $value) { | 
						|
			$m->$attribute = $value; | 
						|
		} | 
						|
		return $m; | 
						|
	} | 
						|
 | 
						|
	public function rules() | 
						|
	{ | 
						|
		return [ | 
						|
			[['val_attr_a', 'val_attr_b'], 'required', 'on' => 'reqTest'], | 
						|
			['val_attr_c', 'integer'], | 
						|
		]; | 
						|
	} | 
						|
 | 
						|
	public function inlineVal($attribute, $params = []) | 
						|
	{ | 
						|
		return true; | 
						|
	} | 
						|
 | 
						|
	public function __get($name) | 
						|
	{ | 
						|
		if (stripos($name, 'attr') === 0) { | 
						|
			return isset($this->attr[$name]) ? $this->attr[$name] : null; | 
						|
		} | 
						|
 | 
						|
		return parent::__get($name); | 
						|
	} | 
						|
 | 
						|
	public function __set($name, $value) | 
						|
	{ | 
						|
		if (stripos($name, 'attr') === 0) { | 
						|
			$this->attr[$name] = $value; | 
						|
		} else { | 
						|
			parent::__set($name, $value); | 
						|
		} | 
						|
	} | 
						|
 | 
						|
	public function getAttributeLabel($attr) | 
						|
	{ | 
						|
		return $attr; | 
						|
	} | 
						|
}
 | 
						|
 |