芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/www/wp-content/plugins/mailpoet/lib/Captcha/ReCaptchaRenderer.php
settings = $settings; $this->wp = $wp; } public function render(): string { $captchaSettings = $this->settings->get('captcha'); $isInvisible = $captchaSettings['type'] === CaptchaConstants::TYPE_RECAPTCHA_INVISIBLE; if ($isInvisible) { $siteKey = $this->wp->escAttr($captchaSettings['recaptcha_invisible_site_token']); $html = '
'; } else { $siteKey = $this->wp->escAttr($captchaSettings['recaptcha_site_token']); $html = '
'; } return $html; } }