コード例 #1
0
ファイル: EntityProto.php プロジェクト: justthefish/hesper
 /**
  * @return Form
  **/
 public final function attachPrimitives(Form $form)
 {
     foreach ($this->getFormMapping() as $primitive) {
         $form->add($primitive);
     }
     return $form;
 }
コード例 #2
0
 /**
  * @return Form
  **/
 public function fillForm(Form $form, $prefix = null)
 {
     return $form->add($this->makePrimitive($prefix . $this->name));
 }