How to Choose Validation Groups Based on the Submitted Data

How to Choose Validation Groups Based on the Submitted Data

If you need some advanced logic to determine the validation groups (e.g. based on submitted data), you can set the validation_groups option to an array callback:

  1. use App\Entity\Client;
  2. use Symfony\Component\OptionsResolver\OptionsResolver;
  3. // ...
  4. public function configureOptions(OptionsResolver $resolver): void
  5. {
  6. $resolver->setDefaults([
  7. 'validation_groups' => [
  8. Client::class,
  9. 'determineValidationGroups',
  10. ],
  11. ]);
  12. }

This will call the static method determineValidationGroups() on the Client class after the form is submitted, but before validation is invoked. The Form object is passed as an argument to that method (see next example). You can also define whole logic inline by using a Closure:

  1. use App\Entity\Client;
  2. use Symfony\Component\Form\FormInterface;
  3. use Symfony\Component\OptionsResolver\OptionsResolver;
  4. // ...
  5. public function configureOptions(OptionsResolver $resolver): void
  6. {
  7. $resolver->setDefaults([
  8. 'validation_groups' => function (FormInterface $form) {
  9. $data = $form->getData();
  10. if (Client::TYPE_PERSON == $data->getType()) {
  11. return ['person'];
  12. }
  13. return ['company'];
  14. },
  15. ]);
  16. }

Using the validation_groups option overrides the default validation group which is being used. If you want to validate the default constraints of the entity as well you have to adjust the option as follows:

  1. use App\Entity\Client;
  2. use Symfony\Component\Form\FormInterface;
  3. use Symfony\Component\OptionsResolver\OptionsResolver;
  4. // ...
  5. public function configureOptions(OptionsResolver $resolver): void
  6. {
  7. $resolver->setDefaults([
  8. 'validation_groups' => function (FormInterface $form) {
  9. $data = $form->getData();
  10. if (Client::TYPE_PERSON == $data->getType()) {
  11. return ['Default', 'person'];
  12. }
  13. return ['Default', 'company'];
  14. },
  15. ]);
  16. }

You can find more information about how the validation groups and the default constraints work in the article about validation groups.

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.