getData() public static method

Get data for a given id.
public static getData ( integer $id ) : array
$id integer The id for the record to get.
return array
コード例 #1
0
ファイル: DataDetails.php プロジェクト: bwgraves/forkcms
 /**
  * Get the data
  */
 private function getData()
 {
     $this->data = BackendFormBuilderModel::getData($this->id);
     $this->record = BackendFormBuilderModel::get($this->data['form_id']);
 }