コード例 #1
0
ファイル: MainModule.php プロジェクト: dzlin/xyeh-yii
 public function beforeControllerAction($controller, $action)
 {
     if (parent::beforeControllerAction($controller, $action)) {
         // this method is called before any module controller action is performed
         // you may place customized code here
         return true;
     } else {
         return false;
     }
 }
コード例 #2
0
ファイル: TestModule.php プロジェクト: dzlin/xyeh-yii
 protected function init()
 {
     $this->controllerNamespace = 'application\\modules\\test\\controllers';
     parent::init();
 }