Symfony Admin Generator表单中的其他表单

时间:2011-07-12 15:37:46

标签: php symfony1 symfony-forms

我目前正在开发一个带有标签的模型。

对于标签,我需要一个额外的表单,但表单生成器生成的所有内容都包含在<form>标记内。

如何在Symfony表单生成器生成的当前表单中添加其他表单?

谢谢

2 个答案:

答案 0 :(得分:1)

制作一个新的表单类并在

中设置
config:
  form:
    class: xxxxxx

xxxxx =新表单类的名称。

更多信息:http://www.symfony-project.org/reference/1_4/en/06-Admin-Generator#chapter_06_form

答案 1 :(得分:0)

在表单类的configure()方法中,您可以嵌入其他表单。

在/lib/form/myForm.class.php中:

    public function configure()
    {
      $other_form = new OtherForm();
      $this->embedForm('Other Form', $other_form);
    }