Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
fields
/
Editing: class-evf-field-captcha.php
<?php /** * Captcha field * * @package EverestForms\Fields * @since 1.6.5 */ defined( 'ABSPATH' ) || exit; /** * EVF_Field_Captcha Class. */ class EVF_Field_Captcha extends EVF_Form_Fields { /** * Constructor. */ public function __construct() { $this->name = esc_html__( 'Math Captcha', 'everest-forms' ); $this->type = 'captcha'; $this->icon = 'evf-icon evf-icon-captcha'; $this->order = 255; $this->group = 'advanced'; $this->is_pro = true; $this->plan = 'personal agency themegrill-agency'; $this->addon = 'everest-forms-captcha'; $this->links = array( 'image_id' => '', 'vedio_id' => 'obScswjZ24Q', ); parent::__construct(); } }
Save
Cancel