コード例 #1
0
ファイル: ControllerApp.php プロジェクト: olif-fm/olif
 protected function getControllerSession()
 {
     if (!class_exists('ControllerSession')) {
         require_once CORE_ROOT . CONTROLLERS . DIRECTORY_SEPARATOR . 'ControllerSession.php';
     }
     if (!is_object($this->session)) {
         $this->session = ControllerSession::getInstance();
     }
 }