| Server IP : 52.25.153.185 / Your IP : 216.73.217.21 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 object $transaction */
/** @var string $transactionTotal */
/** @var array $items */
/** @var array $discountItems */
/** @var string $subTotal */
/** @var string $orderTotal */
?>
<div class="ff_payment_transaction">
<?php
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo \FluentFormPro\Payments\PaymentHelper::loadView('transaction_info', [
'transaction' => $transaction,
'transactionTotal' => $transactionTotal
]);
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo \FluentFormPro\Payments\PaymentHelper::loadView('order_items_table', [
'items' => $items,
'discount_items' => $discountItems,
'subTotal' => $subTotal,
'orderTotal' => $orderTotal
]);
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo \FluentFormPro\Payments\PaymentHelper::loadView('customer_details', [
'transaction' => $transaction
]);
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo \FluentFormPro\Payments\PaymentHelper::loadView('custom_css', []);
?>
</div>