┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/var/www/html/agron/wp-content/themes/Avada/includes/lib/inc/recaptcha
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: class-fusion-recaptcha.php
<?php /** * A proxy class for recaptche. * * @author ThemeFusion * @copyright (c) Copyright by ThemeFusion * @link https://avada.com * @package Avada Core * @subpackage Core * @since 3.9.2 */ // Do not allow directly accessing this file. if ( ! defined( 'ABSPATH' ) ) { exit( 'Direct script access denied.' ); } /** * A proxy class for reCAPTCHA. * * @since 3.9.2 */ class Fusion_ReCaptcha { /** * The reCAPTCHA object. * * @access public * @since 3.9.2 * @var object reCAPTCHA */ public $recaptcha; /** * Class constructor. * * @param string $secret The secret that will be passed-on to reCAPTCHA. * @param null $request_method Not currently used. */ public function __construct( $secret, $request_method = null ) { if ( ! ini_get( 'allow_url_fopen' ) ) { $this->recaptcha = new \ReCaptcha\ReCaptcha( $secret, new \ReCaptcha\RequestMethod\CurlPost() ); } else { $this->recaptcha = new \ReCaptcha\ReCaptcha( $secret ); } } }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📁 src/
DIR
—
2026-04-17 11:02
📄 class-fusion-recaptcha.php
PHP
1012 B
2026-04-17 11:02
EDIT