-
-
Save jaymecd/bd329f28629935f21ccb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class ImageType extends AbstractType | |
{ | |
public function buildForm(FormBuilderInterface $builder, array $options) | |
{ | |
if ($options['required_auto'] && ! $options['required']) { | |
$builder->addEventListener(\Symfony\Component\Form\FormEvents::PRE_SET_DATA, array($this, 'determineRequired')); | |
} | |
} | |
public function setDefaultOptions(OptionsResolverInterface $resolver) | |
{ | |
$resolver->setDefaults(array('required_auto' => true, 'required' => false)); | |
} | |
public function determineRequired(FormEvent $event) | |
{ | |
$data = $event->getData(); | |
$form = $event->getForm(); | |
if (! $data->isNew()) { // my model data knows if it is new or not | |
$config = $form->getConfig(); | |
$reflection = new \ReflectionClass($config); | |
$reflection = $reflection->getParentClass(); | |
$prop = $reflection->getProperty('required'); | |
$prop->setAccessible(true); | |
$prop->setValue($config, true); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment