vendor/beelab/recaptcha2-bundle/src/Form/Type/RecaptchaType.php line 12

Open in your IDE?
  1. <?php
  2. namespace Beelab\Recaptcha2Bundle\Form\Type;
  3. use Beelab\Recaptcha2Bundle\Validator\Constraints\Recaptcha2;
  4. use Symfony\Component\Form\AbstractType;
  5. use Symfony\Component\Form\Extension\Core\Type\TextType;
  6. use Symfony\Component\Form\FormInterface;
  7. use Symfony\Component\Form\FormView;
  8. use Symfony\Component\OptionsResolver\OptionsResolver;
  9. class RecaptchaType extends AbstractType
  10. {
  11.     /** @var string */
  12.     protected $siteKey;
  13.     public function __construct(string $siteKey)
  14.     {
  15.         $this->siteKey $siteKey;
  16.     }
  17.     public function buildView(FormView $viewFormInterface $form, array $options): void
  18.     {
  19.         $view->vars['site_key'] = $this->siteKey;
  20.     }
  21.     public function getParent(): string
  22.     {
  23.         return TextType::class;
  24.     }
  25.     public function getBlockPrefix(): string
  26.     {
  27.         return 'beelab_recaptcha2';
  28.     }
  29.     public function configureOptions(OptionsResolver $resolver): void
  30.     {
  31.         $resolver->setDefaults([
  32.             'label' => false,
  33.             'mapped' => false,
  34.             'constraints' => new Recaptcha2(),
  35.         ]);
  36.     }
  37. }