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.
		
		
		
		
		
			
		
			
				
					
					
						
							43 lines
						
					
					
						
							925 B
						
					
					
				
			
		
		
	
	
							43 lines
						
					
					
						
							925 B
						
					
					
				| <?php | |
| /** | |
|  * RenderEvent class file. | |
|  * | |
|  * @link http://www.yiiframework.com/ | |
|  * @copyright Copyright © 2008-2012 Yii Software LLC | |
|  * @license http://www.yiiframework.com/license/ | |
|  */ | |
|  | |
| namespace yii\base; | |
|  | |
| /** | |
|  * RenderEvent represents the event parameter used for when calling [[Controller::render()]]. | |
|  * | |
|  * By setting the [[isValid]] property, one may control whether to continue the rendering. | |
|  * | |
|  * @author Qiang Xue <qiang.xue@gmail.com> | |
|  * @since 2.0 | |
|  */ | |
| class RenderEvent extends Event | |
| { | |
| 	/** | |
| 	 * @var string the view currently being rendered | |
| 	 */ | |
| 	public $view; | |
| 	/** | |
| 	 * @var string the content to be displayed | |
| 	 */ | |
| 	public $content; | |
| 	/** | |
| 	 * @var boolean whether the action is in valid state and its life cycle should proceed. | |
| 	 */ | |
| 	public $isValid = true; | |
|  | |
| 	/** | |
| 	 * Constructor. | |
| 	 * @param string $view the view currently being rendered | |
| 	 */ | |
| 	public function __construct($view) | |
| 	{ | |
| 		$this->view = $view; | |
| 	} | |
| }
 | |
| 
 |