lukaschel / pimcore-recaptcha
Pimcore bundle to use recaptcha v3 in symfony forms
Installs: 47
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
Type:pimcore-bundle
Requires
This package is auto-updated.
Last update: 2025-03-12 23:54:51 UTC
README
With this Pimcore bundle it is possible to integrate the Google ReCaptcha v3 logic into symfony forms.
Installation
"require" : { "lukaschel/pimcore-recaptcha" : "~1.0.0" }
Usage
After enabling and installing the bundle in the Pimcore backends, the bundle configuration can be used to set Recaptcha keys for each page.
Form integration
Subsequently, a hidden input field can be deposited in the respective form:
public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('g_recaptcha_response', HiddenType::class, [ 'attr' => [ 'class' => 'g-recaptcha-response-input' ] ]); }
Now you only have to validate the input field in your controller when your form is submitted:
if ($form->isSubmitted() && $form->isValid() && $this->container->get('lukaschel.recaptcha')->validate($request->request->get('FORM_NAME')['g_recaptcha_response']) ) { ... }
Copyright and license
For licensing details please visit LICENSE.md