| Server IP : 52.25.153.185 / Your IP : 216.73.216.61 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; ?>
<div class="ffp_payment_info">
<div class="ffp_payment_info_item ffp_payment_info_item_order_id">
<div class="ffp_item_heading"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Transaction #', 'fluentformpro');?></div>
<div class="ffp_item_value">#<?php echo intval($transaction->id); ?></div>
</div>
<div class="ffp_payment_info_item ffp_payment_info_item_date">
<div class="ffp_item_heading"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Date:' ,'fluentformpro');?></div>
<div class="ffp_item_value"><?php echo esc_html(date(get_option( 'date_format' ), strtotime($transaction->created_at))); // phpcs:ignore WordPress.DateTime.RestrictedFunctions.date_date -- Local timezone intended ?></div>
</div>
<?php if($transaction->payment_method): ?>
<div class="ffp_payment_info_item ffp_payment_info_item_payment_method">
<div class="ffp_item_heading"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Payment Method:','fluentformpro');?></div>
<div class="ffp_item_value"><?php
$method = $transaction->payment_method;
$method = apply_filters_deprecated(
'fluentform_payment_method_public_name_' . $method,
[
$method
],
FLUENTFORM_FRAMEWORK_UPGRADE,
'fluentform/payment_method_public_name_' . $method,
'Use fluentform/payment_method_public_name_' . $method . ' instead of fluentform_payment_method_public_name_' . $method
);
echo esc_html(ucfirst(
apply_filters(
'fluentform/payment_method_public_name_' . $method,
$method
)
)); ?></div>
</div>
<?php endif; ?>
<?php if($transaction->status): ?>
<div class="ffp_payment_info_item ffp_payment_info_item_payment_status">
<div class="ffp_item_heading"><?php
// phpcs:ignore WordPress.Security.EscapeOutput.UnsafePrintingFunction
_e('Payment Status:','fluentformpro');?></div>
<div class="ffp_item_value"><?php echo esc_html(ucfirst($transaction->status)); ?></div>
</div>
<?php endif; ?>
</div>