2

Symfony2にFormTypeがあります。設定を表示するために使用されます。設定はデータベースにエンティティとして保存されます。Doctrine2を使用して、設定を取得し、次のようなフォームを作成します。

public function showSettingsAction()
{
    if(false === $this->get('security.context')->isGranted('ROLE_ADMIN')) {
        throw new AccessDeniedException();
    }
    $settings = new CommunitySettings();

    $repository = $this->getDoctrine()->getRepository('TestTestingBundle:CommunitySettings');
    $allSettings = $repository->findAll();

    $form = $this->createForm('collection', $allSettings, array(
        'type' => 'settings_form'
    ));
    $request = $this->container->get('request');
    if($request->getMethod() === 'POST') {
        $form->bindRequest($request);
        if($form->isValid()) {
            $em = $this->getDoctrine()->getEntityManager();
            $settings = $form->getData();
            foreach($settings as $setting) {
                $oldsetting = $em->getRepository('TestTestingBundle:CommunitySettings')
                    ->find($setting->getId());
                if(!$oldsetting) {
                    throw $this->createNotFoundException('No setting found for id '.$setting->getId());
                }

                $oldsetting->setSettingValue($setting->getSettingValue());
                $em->flush();
            }

            $this->get('session')->setFlash('message', 'Your changes were saved');

            return new RedirectResponse($this->generateUrl('_admin_settings'));
        }
    }


    return $this->render('TestTestingBundle:Admin:settings.html.twig',array(
        'form' => $form->createView(),
    ));
}

これは、の配列を:に送信するコード行$allSettingsですsettings_form

$form = $this->createForm('collection', $allSettings, array(
    'type' => 'settings_form'
));

設定フォームは次のようになります。

public function buildForm(FormBuilder $builder, array $options)
{
    $builder->add('settingValue', 'text');
}

エンティティにラベル、値、およびフィールドタイプが格納されており、それらをフォームの作成に使用したいと思います。ただし、これを使用すると、次のようにフォームに変数名のみが表示されます。

0
Settingvalue //Is a checkbox, where it says Settingvalue, it should be the label stored in the entity
0

1
Settingvalue //Is a integer, where it says Settingvalue, it should be the label stored in the entity
3000

エンティティに格納されている変数を使用してフォームフィールドを作成するにはどうすればよいですか?

4

1 に答える 1

3

設定フォームタイプでイベントリスナーを使用して、この問題を解決できます。

public function buildForm(FormBuilder $builder, array $options)
{
    $formFactory = $builder->getFormFactory();
    $builder->addEventListener(FormEvents::PRE_SET_DATA, function (FormEvent $event) use ($formFactory) {
        $form = $event->getForm();
        $data = $event->getData();

        $form->add($formFactory->createNamed('settingsValue', $data->getSettingsType(), array(
            'label' => $data->getSettingsLabel(),
        )));
    });
}
于 2012-07-31T17:08:33.693 に答える