コード例 #1
0
ファイル: Controller.php プロジェクト: gilad1987/picabo
 protected function postDispatch()
 {
     if ($this->_http->getParam('parse') == 'json' || $this->_http->isXHR() || $this->_view->isViewDisable()) {
         $this->_view->returnJson();
     } else {
         $this->_view->render();
     }
 }