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