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.

44 lines
925 B

13 years ago
<?php
/**
* RenderEvent class file.
*
* @link http://www.yiiframework.com/
* @copyright Copyright &copy; 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
{
/**
13 years ago
* @var string the view currently being rendered
13 years ago
*/
13 years ago
public $view;
13 years ago
/**
13 years ago
* @var string the content to be displayed
*/
public $content;
/**
13 years ago
* @var boolean whether the action is in valid state and its life cycle should proceed.
*/
public $isValid = true;
/**
* Constructor.
13 years ago
* @param string $view the view currently being rendered
13 years ago
*/
13 years ago
public function __construct($view)
13 years ago
{
13 years ago
$this->view = $view;
13 years ago
}
}