フォーム サブスクライバーの動作は、通常のイベント リスナーとは少し異なると思います。
コントローラーで、フォームタイプをインスタンス化しています。つまり、
$form = $this->createForm(new CustomerType(), $customer);
コンテナーはコントローラーで使用できるため、フォーム タイプに直接渡すことができます。つまり、
$form = $this->createForm(new CustomerType($this->container), $customer);
私の場合、セキュリティ コンテキストが必要だったので、私の実装 (似ていますが、元の q とは少し異なります):
私のコントローラーで:
$form = $this->createForm(new CustomerType($this->get('security.context')), $customer));
私のフォームクラスでは:
use Symfony\Component\Security\Core\SecurityContext;
class CustomerType extends AbstractType
{
protected $securityContext;
public function __construct(SecurityContext $securityContext)
{
$this->securityContext = $securityContext;
}
public function buildForm(FormBuilder $builder, array $options)
{
// Delegate responsibility for creating a particular field to EventSubscriber
$subscriber = new CustomerAddSpecialFieldSubscriber($builder->getFormFactory(), $this->securityContext);
$builder->addEventSubscriber($subscriber);
$builder->add( ... the rest of my fields ... );
}
// other standard Form functions
}
そして私のフォームサブスクライバーで
use Symfony\Component\Security\Core\SecurityContext;
CustomerAddSpecialFieldSubscriber
{
private $factory;
protected $securityContext;
public function __construct(FormFactoryInterface $factory, SecurityContext $securityContext)
{
$this->factory = $factory;
$this->securityContext = $securityContext;
}
public static function getSubscribedEvents()
{
return array(FormEvents::PRE_SET_DATA => 'preSetData');
}
public function preSetData(DataEvent $event)
{
if (true === $this->securityContext->isGranted('ROLE_ADMIN')) {
// etc
}
}
}
それが役に立てば幸い。