| Server IP : 52.25.153.185 / Your IP : 216.73.216.194 Web Server : Apache System : Linux ip-172-26-6-158 5.10.0-45-cloud-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : daemon ( 1) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /bitnami/wordpress/wp-content/plugins/fluentformpro/src/views/receipt/ |
Upload File : |
<?php defined('ABSPATH') or die; ?>
<?php
/** @var Array $subscriptions */
/** @var Array $config */
?>
<div class="ff_subscriptions">
<?php
foreach ($subscriptions as $subscription): ?>
<div class="ff_subscription">
<div class="ff_subscription_header">
<div class="ff_pay_info">
<div class="ff_form_name"><span class="ff_sub_id">#<?php echo intval($subscription->id); ?></span> <?php echo esc_html($subscription->title); ?></div>
<div class="ff_sub_name"><?php echo esc_html($subscription->plan_name); ?>
<span class="ff_sub_input_name">(<?php echo esc_html($subscription->item_name) ?>)</span>
</div>
<div class="head_payment_amount">
<span class="pay_amount"><?php echo esc_html($subscription->formatted_recurring_amount); ?></span>
<span>/<?php echo esc_html($subscription->billing_interval); ?></span>
<span class="ff_pay_status_badge ff_pay_status_<?php echo esc_attr($subscription->status); ?>">
<?php echo esc_html($subscription->status); ?>
</span>
<?php if ($subscription->billing_text): ?>
<p class="ff_billing_text"><?php echo esc_html($subscription->billing_text); ?></p>
<?php endif; ?>
</div>
</div>
<div class="ff_plan_info">
<p class="ff_billing_dates">
<span class="ff_sub_start"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Started:', 'fluentformpro') ?> <?php echo esc_html($subscription->starting_date_formated); ?></span>
</p>
<div class="ff_payment_count_btn">
<button data-subscription_id="<?php echo intval($subscription->id); ?>" class="ff_show_payments"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('View Payments', 'fluentformpro'); ?>
</button>
<?php if($subscription->can_cancel): ?>
<button data-submission_id="<?php echo intval($subscription->submission_id); ?>" data-subscription_id="<?php echo intval($subscription->id); ?>" class="ff_cancel_subscription"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Cancel', 'fluentformpro'); ?>
</button>
<?php endif; ?>
</div>
</div>
</div>
<?php if($subscription->can_cancel): ?>
<div style="display: none;" class="ff_sub_cancel_confirmation">
<h4><?php echo esc_html($config['sub_cancel_confirm_heading']); ?></h4>
<div class="sub_cancel_btns">
<button class="ff_confirm_subscription_cancel"><?php echo esc_html($config['sub_cancel_confirm_btn']); ?></button>
<button class="ff_cancel_close"><?php echo esc_html($config['sub_cancel_close']); ?></button>
<p class="ff_sub_message_notices"></p>
</div>
</div>
<?php endif; ?>
<div class="ff_subscription_payments"></div>
</div>
<?php endforeach; ?>
</div>