setAttribute('label_prefix', $options['label_prefix']) ->add('title', TextType::class, ['attr' => ['placeholder' => 'Your title']]) ->add('short', TextType::class, ['attr' => ['placeholder' => 'Your short']]) ->add('address', TextType::class, ['attr' => ['placeholder' => 'Your address']]) ->add('zipcode', NumberType::class, ['attr' => ['placeholder' => 'Your zipcode'], 'html5' => true]) ->add('city', TextType::class, ['attr' => ['placeholder' => 'Your city']]) ->add('latitude', NumberType::class, ['attr' => ['placeholder' => 'Your latitude', 'step' => 0.000001], 'html5' => true, 'scale' => 6]) ->add('longitude', NumberType::class, ['attr' => ['placeholder' => 'Your longitude', 'step' => 0.000001], 'html5' => true, 'scale' => 6]) ->add('hotspot', CheckboxType::class, ['attr' => ['placeholder' => 'Your hotspot'], 'required' => false]) ->add('submit', SubmitType::class, ['label' => 'Send', 'attr' => ['class' => 'submit']]); } /** * {@inheritdoc} * public function buildView(FormView $view, FormInterface $form, array $options) { #$labelPrefix = $form->getRoot()->hasAttribute('label_prefix') ? $form->getRoot()->getAttribute('label_prefix') : ''; #$labelPrefix = $form->getConfig()->hasAttribute('label_prefix'); #$labelPrefix = $form->getConfig()->getAttribute('label_prefix'); #var_dump($view); var_dump($view['label']); exit; //Prefix label to prevent collision $view['label'] = $form->getConfig()->getAttribute('label_prefix').$view->getVar('label'); }*/ /** * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults(['data_class' => Location::class, 'error_bubbling' => true, 'label_prefix' => '']); } }