Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
wp-content
/
plugins
/
everest-forms
/
includes
/
fields
/
Editing: class-evf-field-payment-checkbox.php
<?php /** * Payment checkbox field * * @package EverestForms\Fields * @since 1.2.0 */ defined( 'ABSPATH' ) || exit; /** * EVF_Field_Payment_Checkbox Class. */ class EVF_Field_Payment_Checkbox extends EVF_Form_Fields { /** * Constructor. */ public function __construct() { $this->name = esc_html__( 'Checkboxes', 'everest-forms' ); $this->type = 'payment-checkbox'; $this->icon = 'evf-icon evf-icon-checkbox'; $this->order = 30; $this->group = 'payment'; $this->is_pro = true; $this->links = array( 'image_id' => '', 'vedio_id' => 'madNj3wtoak', ); parent::__construct(); } }
Save
Cancel