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” (this is shown in the official Symfony 2 Documentation, but never mentioned, ever!)
I have fed an array into the createForm function in my controller but now I am totally stumped on how to retrieve the stored values?
$form = $this->createForm(new ProductType(array(), array('id' => '2')), $product);
The only thing I have found about getting the options is using the getOption() function, but that doesn’t exist in Symfony 2 (the post I found was from 2010).
I tried using:
$id = $options['id'];
But when I try to use $id anywhere, I get the error:
Notice: Undefined index: id
What gives?
How do I retrieve my values from the $options array? Am I even setting them correctly in the first place?
EDIT – More code:
Form Class
<?php
namespace DEMO\DemoBundle\Form\Product;
use Doctrine\ORM\EntityRepository;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilder;
class ProductType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->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) {
return $er->createQueryBuilder('u')
->where('u.section = :id')
->setParameter('id', ***ID VARIABLE NEEDS TO GO HERE***)
->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'
);
}
public function getName()
{
return 'demo_demobundle_product_type';
}
}
Well, it turns out, Gregoires answer was very close, but gave me and “Undefined variable” error when trying to actually but the variable into the createQueryBuilder function.
I spent a while trying to figure out why and found the issue. You have to add an extra parameter to the function in the “query_builder” option, like such:
The magic setting being “use ($options)”. This allows you to successfully use $options[‘id’] in the Query Builder.