File "class-evf-field-payment-subtotal.php"

Full Path: /home/rattkxnv/byattorney.com/wp-content/plugins/everest-forms/includes/fields/class-evf-field-payment-subtotal.php
File size: 627 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Payment Subtotal field
 *
 * @package EverestForms\Fields
 * @since   1.9.6
 */

defined( 'ABSPATH' ) || exit;

/**
 * EVF_Field_Payment_Subtotal Class.
 */
class EVF_Field_Payment_Subtotal extends EVF_Form_Fields {

	/**
	 * Constructor.
	 */
	public function __construct() {
		$this->name   = esc_html__( 'Subtotal', 'everest-forms' );
		$this->type   = 'payment-subtotal';
		$this->icon   = 'evf-icon evf-icon-subtotal';
		$this->order  = 220;
		$this->group  = 'payment';
		$this->is_pro = true;
		$this->links  = array(
			'image_id' => '',
			'vedio_id' => 'PpRGYqBTeoI',
		);

		parent::__construct();
	}
}