Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d711ea2

Browse files
author
Kevin Grenier
committed
Add missing row_attr option to FormType
1 parent 926f286 commit d711ea2

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

src/Symfony/Component/Form/Extension/Core/Type/BaseType.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ public function buildView(FormView $view, FormInterface $form, array $options)
101101
'attr' => $options['attr'],
102102
'block_prefixes' => $blockPrefixes,
103103
'unique_block_prefix' => $uniqueBlockPrefix,
104+
'row_attr' => $options['row_attr'],
104105
'translation_domain' => $translationDomain,
105106
'label_translation_parameters' => $labelTranslationParameters,
106107
'attr_translation_parameters' => $attrTranslationParameters,
@@ -125,6 +126,7 @@ public function configureOptions(OptionsResolver $resolver)
125126
'disabled' => false,
126127
'label' => null,
127128
'label_format' => null,
129+
'row_attr' => [],
128130
'label_translation_parameters' => [],
129131
'attr_translation_parameters' => [],
130132
'attr' => [],
@@ -134,5 +136,6 @@ public function configureOptions(OptionsResolver $resolver)
134136

135137
$resolver->setAllowedTypes('block_prefix', ['null', 'string']);
136138
$resolver->setAllowedTypes('attr', 'array');
139+
$resolver->setAllowedTypes('row_attr', 'array');
137140
}
138141
}

src/Symfony/Component/Form/Tests/Fixtures/Descriptor/resolved_form_type_1.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"post_max_size_message",
5252
"property_path",
5353
"required",
54+
"row_attr",
5455
"translation_domain",
5556
"upload_max_size_message"
5657
]

src/Symfony/Component/Form/Tests/Fixtures/Descriptor/resolved_form_type_1.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Symfony\Component\Form\Extension\Core\Type\ChoiceType (Block prefix: "choice")
3131
post_max_size_message
3232
property_path
3333
required
34+
row_attr
3435
translation_domain
3536
upload_max_size_message
3637
--------------------------- -------------------- ------------------------------ -----------------------

src/Symfony/Component/Form/Tests/Fixtures/Descriptor/resolved_form_type_2.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"post_max_size_message",
3232
"property_path",
3333
"required",
34+
"row_attr",
3435
"translation_domain",
3536
"trim",
3637
"upload_max_size_message"

src/Symfony/Component/Form/Tests/Fixtures/Descriptor/resolved_form_type_2.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ Symfony\Component\Form\Extension\Core\Type\FormType (Block prefix: "form")
3333
post_max_size_message
3434
property_path
3535
required
36+
row_attr
3637
translation_domain
3738
trim
3839
upload_max_size_message

0 commit comments

Comments
 (0)