コード例 #1
0
ファイル: abstract.php プロジェクト: xyz12810/xiao3vpn
 function msg($tip = null, $url = null, $delay = null)
 {
     if ($tip) {
         $this->_app->setFlashMessage($tip);
     }
     if ($url) {
         return $this->_redirect($url, $delay);
     }
 }
コード例 #2
0
ファイル: abstract.php プロジェクト: Debenson/openwan
 /**
  * 执行控制器动作之前调用
  */
 protected function _before_execute()
 {
     $this->_view['_app'] = $this->_app;
     $this->_view['pathway'] = $this->_pathway;
     $this->_view['currentUser'] = $this->_app->currentUser();
 }