コード例 #1
0
ファイル: edit.php プロジェクト: netconstructor/forkcms
 /**
  * Get the data for a question
  *
  * @return	void
  */
 private function getData()
 {
     // get the record
     $this->record = BackendFaqModel::getQuestion($this->id);
     // get categories
     $this->categories = BackendFaqModel::getCategoriesForDropdown();
 }
コード例 #2
0
ファイル: add.php プロジェクト: netconstructor/forkcms
 /**
  * Get the data for a question
  *
  * @return	void
  */
 private function getData()
 {
     // get categories
     $this->categories = BackendFaqModel::getCategoriesForDropdown();
 }