我正在嘗試在Yii的子模塊中註冊事件。如何在Yii的模塊中註冊事件?
它似乎並不工作。
init
方法絕對是所謂的。
class TestModule extends CWebModule
{
public function init()
{
$this->setImport(array(
'test.models.*',
'test.components.*',
));
Yii::app()->onBeginRequest = array($this, 'onBeginRequest');
}
public function onBeginRequest($event) {
die('Request!');
}
public function beforeControllerAction($controller, $action)
{
if (parent::beforeControllerAction($controller, $action))
{
return true;
}
else
return false;
}
}
您嘗試返回die('Request!'); ? – FabianoLothor 2013-02-18 12:56:10