[Form] Fixed: ChoiceType omits the "empty_value" option if the choices contain an empty element

This commit is contained in:
Bernhard Schussek 2012-07-09 16:52:31 +02:00
parent 7f9fd11fd0
commit 040ba8f3cd
3 changed files with 25 additions and 1 deletions

View File

@ -141,3 +141,4 @@ CHANGELOG
* FormBuilder now implements \IteratorAggregate
* [BC BREAK] compound forms now always need a data mapper
* FormBuilder now maintains the order when explicitely adding form builders as children
* ChoiceType now doesn't add the empty value anymore if the choices already contain an empty element

View File

@ -81,9 +81,15 @@ class ChoiceType extends AbstractType
'preferred_choices' => $options['choice_list']->getPreferredViews(),
'choices' => $options['choice_list']->getRemainingViews(),
'separator' => '-------------------',
'empty_value' => $options['empty_value'],
'empty_value' => null,
));
// Check if the choices already contain the empty value
// Only add the empty value option if this is not the case
if (0 === count($options['choice_list']->getIndicesForValues(array('')))) {
$view->setVar('empty_value', $options['empty_value']);
}
if ($options['multiple'] && !$options['expanded']) {
// Add "[]" to the name in case a select tag with multiple options is
// displayed. Otherwise only one of the selected options is sent in the

View File

@ -613,6 +613,23 @@ class ChoiceTypeTest extends TypeTestCase
$this->assertEquals($viewValue, $view->getVar('empty_value'));
}
/**
* @dataProvider getOptionsWithEmptyValue
*/
public function testDontPassEmptyValueIfContainedInChoices($multiple, $expanded, $required, $emptyValue, $viewValue)
{
$form = $this->factory->create('choice', null, array(
'multiple' => $multiple,
'expanded' => $expanded,
'required' => $required,
'empty_value' => $emptyValue,
'choices' => array('a' => 'A', '' => 'Empty'),
));
$view = $form->createView();
$this->assertNull($view->getVar('empty_value'));
}
public function getOptionsWithEmptyValue()
{
return array(