コード例 #1
0
ファイル: Questions.php プロジェクト: houtsnip/bruno_test
 public function getQuestions()
 {
     if (!isset($this->_ret)) {
         $dbTable = new App_Model_DbTable_Question();
         $this->_ret = $dbTable->getAll();
     }
     return $this->_ret;
 }