Symfony2 - How to set, and get, options when using a Form Class?

后端 未结 6 1457
暖寄归人
暖寄归人 2021-02-06 08:29

I am using Form Classes to build the various form in my project.

In the Entity Type file, for the buildForm function, there is a secondary parameter of \"array $options\

6条回答
  •  后悔当初
    2021-02-06 09:06

    I think you're not setting them properly in the first place. You're supposed to give them as third argument to createForm()

    EDIT: Here is how your form class could look:

    add('name')
                ->add('slug')
                ->add('reference')
                ->add('description')
                ->add('active_from')
                ->add('active_till')
                ->add('is_active')
                ->add('category', 'entity', array(
                    'class' => 'DEMO\DemoBundle\Entity\Product\ProductCategory',
                    'query_builder' => function(EntityRepository $er) use($options) {
                        return $er->createQueryBuilder('u')
                            ->where('u.section = :id')
                            ->setParameter('id', $options['id'])
                            ->orderBy('u.root', 'ASC')
                            ->addOrderBy('u.lft', 'ASC');
                    },
                    'empty_value' => 'Choose an option',
                    'property' => 'indentedName',
                ));
        }
    
        public function getDefaultOptions()
        {
            return array(
                'data_class' => 'DEMO\DemoBundle\Entity\Product\Product',
                'id'         => null
            );
        }
    
        public function getName()
        {
            return 'demo_demobundle_product_type';
        }
    }
    

提交回复
热议问题