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