uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
public_html
/
wp-content
/
plugins
/
charitable
/
templates
/
donation-receipt
/
details.php
/
/
<?php /** * Displays the donation details. * * Override this template by copying it to yourtheme/charitable/donation-receipt/details.php * * @author WP Charitable LLC * @package Charitable/Templates/Donation Receipt * @since 1.0.0 * @version 1.6.55 */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } /* @var Charitable_Donation */ $donation = $view_args['donation']; $amount = $donation->get_total(); ?> <h3 class="charitable-header"><?php echo esc_html_x( 'Your Donation', 'donation receipt header', 'charitable' ); ?></h3> <table class="donation-details charitable-table"> <thead> <tr> <th><?php esc_html_e( 'Campaign', 'charitable' ); ?></th> <th><?php esc_html_e( 'Total', 'charitable' ); ?></th> </tr> </thead> <tbody> <?php foreach ( $donation->get_campaign_donations() as $campaign_donation ) : ?> <tr> <td class="campaign-name"> <?php echo esc_html( $campaign_donation->campaign_name ); /** * Do something after displaying the campaign name. * * @since 1.3.0 * * @param object $campaign_donation Database record for the campaign donation. * @param Charitable_Donation $donation The Donation object. */ do_action( 'charitable_donation_receipt_after_campaign_name', $campaign_donation, $donation ); ?> </td> <td class="donation-amount"><?php echo charitable_format_money( $campaign_donation->amount, false, false, $donation->get_currency() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></td> </tr> <?php endforeach ?> </tbody> <tfoot> <?php /** * Do something before displaying the total. * * If you add markup, make sure it's a table row with two cells. * * @since 1.5.0 * * @param Charitable_Donation $donation The Donation object. */ do_action( 'charitable_donation_receipt_before_donation_total', $donation ); ?> <tr> <td><?php esc_html_e( 'Total', 'charitable' ); ?></td> <td> <?php /** * Filter the total donation amount. * * @since 1.5.0 * * @param string $amount The default amount to display. * @param float $total The total, unformatted. * @param Charitable_Donation $donation The Donation object. * @param string $context The context in which this is being shown. * @return string */ echo apply_filters( 'charitable_donation_receipt_donation_amount', charitable_format_money( $amount, false, true, $donation->get_currency() ), $amount, $donation, 'details' ) // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?> </td> </tr> <?php /** * Do something after displaying the total. * * If you add markup, make sure it's a table row with two cells. * * @since 1.5.0 * * @param Charitable_Donation $donation The Donation object. */ do_action( 'charitable_donation_receipt_after_donation_total', $donation ); ?> </tfoot> </table>
/home/batcwwjx/public_html/wp-content/plugins/charitable/templates/donation-receipt/details.php