コード例 #1
0
ファイル: Element.php プロジェクト: nOoiser/SimplOnPHP
 public function create()
 {
     $this->processData('preCreate');
     $id = $this->dataStorage->createElement($this);
     $this->setId($id);
     $this->processData('postCreate');
     return $id !== false;
 }