0

我正在为我的表单创建表单类,但无法弄清楚如何“扩展”它们。

例如,我有一个CustomerType表单类和一个EmailType表单类。我可以EmailType直接添加到我的CustomerType

$builder->add('emails', 'collection', array(
    'type'         => new EmailType(),
    'allow_add'    => true,
    'by_reference' => false
));

但我更喜欢在控制器中执行此操作,以便我的CustomerType表单类仅包含客户信息。我觉得这更加模块化和可重用,因为有时我希望我的用户能够只编辑Customer详细信息,而其他人既可以编辑详细信息,也可以编辑与该客户关联的对象CustomerEmail(例如,第一种情况是查看客户的工单,第二种情况是创建新客户)。

这可能吗?我在想一些事情

$form = $this->createForm(new CustomerType(), $customer);
$form->add('emails', 'collection', ...)

在我的控制器中。

4

1 回答 1

0

您可以在创建表单时将一个选项(例如“with_email_edition”)传递给您的表单,以判断表单是否应该嵌入集合。

在控制器中:

$form = $this->createForm( new CustomerType(), $customerEntity, array('with_email_edition' => true) );

在表格中:

只需在 setDefaultOptions 中添加选项:

public function setDefaultOptions(OptionsResolverInterface $resolver)
{
     $resolver->setDefaults(array(
                'with_email_edition' => null,
            ))
            ->setAllowedValues(array(
                'with_email_edition' => array(true, false),
            ));
}

然后在“buildForm”中检查这个选项的值,并根据它添加一个字段:

public function buildForm(FormBuilderInterface $builder, array $options)
{
     if( array_key_exists("with_email_edition", $options) && $options['with_email_edition'] === true )
     {
          //Add a specific field with  $builder->add for example
     }
}
于 2013-03-19T10:45:25.570 回答