PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
mailpoet
/
lib
/
Subscription
/
Captcha
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing namespace MailPoet\Subscription\Captcha; if (!defined('ABSPATH')) exit; class CaptchaConstants { const TYPE_BUILTIN = 'built-in'; const TYPE_RECAPTCHA = 'recaptcha'; const TYPE_RECAPTCHA_INVISIBLE = 'recaptcha-invisible'; const TYPE_DISABLED = null; public static function isReCaptcha(?string $captchaType) { return in_array($captchaType, [self::TYPE_RECAPTCHA, self::TYPE_RECAPTCHA_INVISIBLE]); } }
[-] index.php
[edit]
[+]
..
[-] CaptchaConstants.php
[edit]
[-] CaptchaPhrase.php
[edit]
[-] CaptchaRenderer.php
[edit]
[+]
Validator
[-] CaptchaSession.php
[edit]