class-evf-field-address.php
1 year ago
class-evf-field-ai.php
1 year ago
class-evf-field-captcha.php
1 month ago
class-evf-field-checkbox.php
2 months ago
class-evf-field-color.php
1 month ago
class-evf-field-country.php
2 months ago
class-evf-field-credit-card.php
1 month ago
class-evf-field-date-time.php
1 month ago
class-evf-field-divider.php
2 years ago
class-evf-field-email.php
1 year ago
class-evf-field-file-upload.php
1 year ago
class-evf-field-first-name.php
1 year ago
class-evf-field-hcaptcha.php
4 months ago
class-evf-field-hidden.php
1 year ago
class-evf-field-html.php
9 months ago
class-evf-field-image-upload.php
1 year ago
class-evf-field-last-name.php
1 year ago
class-evf-field-likert.php
1 year ago
class-evf-field-lookup.php
1 month ago
class-evf-field-number.php
1 year ago
class-evf-field-password.php
1 month ago
class-evf-field-payment-authorize-net.php
1 month ago
class-evf-field-payment-checkbox.php
1 month ago
class-evf-field-payment-coupon.php
1 month ago
class-evf-field-payment-gateway-selector.php
1 month ago
class-evf-field-payment-quantity.php
1 month ago
class-evf-field-payment-radio.php
1 month ago
class-evf-field-payment-single.php
1 month ago
class-evf-field-payment-square.php
1 year ago
class-evf-field-payment-subscription-plan.php
1 month ago
class-evf-field-payment-subtotal.php
1 month ago
class-evf-field-payment-total.php
1 month ago
class-evf-field-phone.php
1 year ago
class-evf-field-privacy-policy.php
2 months ago
class-evf-field-private-note.php
1 year ago
class-evf-field-progress.php
1 month ago
class-evf-field-radio.php
2 months ago
class-evf-field-range-slider.php
1 month ago
class-evf-field-rating.php
2 months ago
class-evf-field-recaptcha.php
4 months ago
class-evf-field-repeater.php
1 month ago
class-evf-field-reset.php
1 month ago
class-evf-field-scale-rating.php
1 year ago
class-evf-field-select.php
1 year ago
class-evf-field-signature.php
1 month ago
class-evf-field-text.php
1 year ago
class-evf-field-textarea.php
1 year ago
class-evf-field-title.php
2 years ago
class-evf-field-turnstile.php
4 months ago
class-evf-field-url.php
1 year ago
class-evf-field-wysiwyg.php
2 months ago
class-evf-field-yes-no.php
1 year ago
payment-amount-helpers.php
1 month ago
class-evf-field-payment-total.php
76 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Payment Total field |
| 4 | * |
| 5 | * @package EverestForms\Fields |
| 6 | * @since 1.2.0 |
| 7 | */ |
| 8 | |
| 9 | defined( 'ABSPATH' ) || exit; |
| 10 | |
| 11 | // Currency-aware amount helper so the preview matches the real Pro field. |
| 12 | require_once __DIR__ . '/payment-amount-helpers.php'; |
| 13 | |
| 14 | /** |
| 15 | * EVF_Field_Payment_Total Class. |
| 16 | * |
| 17 | * Builder-scope (read-only) version shipped in the free plugin so the field can |
| 18 | * be shown LOCKED — with its real preview and readable settings — for the AI |
| 19 | * upsell. The full functional implementation (front-end display, validation, |
| 20 | * processing) lives in Everest Forms Pro, whose class loads in place of this one |
| 21 | * when the plugin is active (this file is only autoloaded when that class is not |
| 22 | * already defined). Keep `is_pro = true` so the field stays locked. |
| 23 | */ |
| 24 | class EVF_Field_Payment_Total extends EVF_Form_Fields { |
| 25 | |
| 26 | /** |
| 27 | * Constructor. |
| 28 | */ |
| 29 | public function __construct() { |
| 30 | $this->name = esc_html__( 'Total', 'everest-forms' ); |
| 31 | $this->type = 'payment-total'; |
| 32 | $this->icon = 'evf-icon evf-icon-total'; |
| 33 | $this->order = 60; |
| 34 | $this->group = 'payment'; |
| 35 | $this->is_pro = true; |
| 36 | $this->links = array( |
| 37 | 'image_id' => '', |
| 38 | 'vedio_id' => 'Pdy8qGcMnc8', |
| 39 | ); |
| 40 | $this->settings = array( |
| 41 | 'basic-options' => array( |
| 42 | 'field_options' => array( |
| 43 | 'label', |
| 44 | 'description', |
| 45 | 'required', |
| 46 | ), |
| 47 | ), |
| 48 | 'advanced-options' => array( |
| 49 | 'field_options' => array( |
| 50 | 'meta', |
| 51 | 'label_hide', |
| 52 | 'css', |
| 53 | ), |
| 54 | ), |
| 55 | ); |
| 56 | |
| 57 | parent::__construct(); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Field preview inside the builder (matches the Pro Total field). |
| 62 | * |
| 63 | * @param array $field Field data and settings. |
| 64 | */ |
| 65 | public function field_preview( $field ) { |
| 66 | // Label. |
| 67 | $this->field_preview_option( 'label', $field ); |
| 68 | |
| 69 | // Primary field. |
| 70 | echo '<div>' . evf_format_amount( 0, true ) . '</div>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 71 | |
| 72 | // Description. |
| 73 | $this->field_preview_option( 'description', $field ); |
| 74 | } |
| 75 | } |
| 76 |