Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
formidable
/
classes
/
models
:
FrmRecaptchaSettings.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php if ( ! defined( 'ABSPATH' ) ) { die( 'You are not allowed to call this page directly.' ); } /** * @since 6.8.4 */ class FrmRecaptchaSettings extends FrmFieldCaptchaSettings { /** * @since 6.8.4 * * @return void */ protected function set_endpoint() { $this->endpoint = 'https://www.google.com/recaptcha/api/siteverify'; } /** * @since 6.11.1 * * @return string */ public function get_name() { return 'reCAPTCHA'; } /** * @since 6.8.4 * * @return string */ public function get_element_class_name() { return 'g-recaptcha'; } /** * @since 6.8.4 * * @return string */ public function get_documentation_url() { return 'https://www.google.com/recaptcha/'; } /** * @since 6.8.4 * * @return string */ public function get_site_key_tooltip() { return __( 'reCAPTCHA is a free, accessible CAPTCHA service that helps to digitize books while blocking spam on your blog. reCAPTCHA asks commenters to retype two words scanned from a book to prove that they are a human. This verifies that they are not a spambot.', 'formidable' ); // phpcs:ignore SlevomatCodingStandard.Files.LineLength.LineTooLong } /** * Add additional element attributes for reCAPTCHA. * * @since 6.8.4 * * @param array $attributes * @param array $field * * @return array */ public function add_front_end_element_attributes( $attributes, $field ) { $attributes = parent::add_front_end_element_attributes( $attributes, $field ); $captcha_size = $attributes['data-size']; if ( $captcha_size === 'invisible' && ! $this->frm_settings->re_multi ) { $attributes['data-callback'] = 'frmAfterRecaptcha'; } return $attributes; } /** * @since 6.8.4 * * @param array $field * * @return string */ protected function get_captcha_size( $field ) { if ( $this->captcha_is_invisible() ) { return 'invisible'; } return parent::get_captcha_size( $field ); } /** * Show the Captcha field size setting if the captcha is visible. * * @since 6.8.4 * * @return bool */ public function should_show_captcha_size() { return ! $this->captcha_is_invisible(); } /** * @since 6.8.4 * * @return bool */ public function should_show_captcha_theme() { return ! $this->captcha_is_invisible(); } /** * @since 6.8.4 * * @return bool */ private function captcha_is_invisible() { return in_array( $this->frm_settings->re_type, array( 'invisible', 'v3' ), true ); } /** * Only add the "frm-" prefix if multiple reCAPTCHA fields are allowed. * * @since 6.25.1 * * @param bool $allow_multiple * * @return string */ public function get_class_prefix( $allow_multiple ) { return $allow_multiple ? 'frm-' : ''; } /** * @since 6.8.4 * @deprecated 6.11.1 * * @return string */ public function getName() { _deprecated_function( __METHOD__, '6.11.1' ); return $this->get_name(); } }