Skip to content

Instantly share code, notes, and snippets.

@mikemix
Created February 14, 2017 09:29
Show Gist options
  • Select an option

  • Save mikemix/32b7b842e2c0b675180fec12572330a9 to your computer and use it in GitHub Desktop.

Select an option

Save mikemix/32b7b842e2c0b675180fec12572330a9 to your computer and use it in GitHub Desktop.
Dynamic validation groups
<?php
// form skipped for brevity
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'validation_groups' => function (FormInterface $form) {
return $form->getConfig()->getOption('option_name') ?
['group1', 'group2'],
['group3'];
},
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment