File manager - Edit - /home/verseaumee/blueversion/wp-content/plugins/hcaptcha-for-forms-and-more/src/php/BBPress/Base.php
Back
<?php /** * Base class file. * * @package hcaptcha-wp */ namespace HCaptcha\BBPress; use HCaptcha\Helpers\HCaptcha; /** * Class Base. */ abstract class Base { /** * Base constructor. */ public function __construct() { $this->init_hooks(); } /** * Init hooks. * * @return void */ private function init_hooks() { add_action( static::ADD_CAPTCHA_HOOK, [ $this, 'add_captcha' ] ); add_action( static::VERIFY_HOOK, [ $this, 'verify' ] ); } /** * Add captcha to the form. * * @return void */ public function add_captcha() { $form_id = str_replace( 'hcaptcha_bbp_', '', static::ACTION ); $args = [ 'action' => static::ACTION, 'name' => static::NAME, 'id' => [ 'source' => HCaptcha::get_class_source( static::class ), 'form_id' => $form_id, ], ]; HCaptcha::form_display( $args ); } /** * Verify captcha. * * @return bool * @noinspection PhpUndefinedFunctionInspection */ public function verify(): bool { $error_message = hcaptcha_get_verify_message( static::NAME, static::ACTION ); if ( null !== $error_message ) { bbp_add_error( 'hcap_error', $error_message ); return false; } return true; } }
| ver. 1.4 |
Github
|
.
| PHP 8.5.7 | Generation time: 0 |
proxy
|
phpinfo
|
Settings