PluginProbe
HTML Forms – Simple WordPress Forms Plugin / trunk
HTML Forms – Simple WordPress Forms Plugin vtrunk
trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 All 66 releases
html-forms / src / admin / class-hcaptcha.php

class-hcaptcha.php in HTML Forms – Simple WordPress Forms Plugin trunk, at src/admin/class-hcaptcha.php

20 lines 417 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace HTML_Forms\Admin;
4
5 class Hcaptcha {
6 public function hook() {
7 add_filter( 'hf_ignored_field_names', array( $this, 'ignored_fields' ) ) ;
8 }
9
10 public function ignored_fields() {
11 return array(
12 'hcaptcha-widget-id',
13 'hcap_fst_token',
14 'g-recaptcha-response',
15 'h-captcha-response',
16 'html_forms_form_nonce',
17 );
18 }
19 }
20