HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/plugins/charitable/templates/campaign/summary.php
<?php

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

/**
 * Displays the campaign summary.
 *
 * Override this template by copying it to yourtheme/charitable/campaign/summary.php
 *
 * @author  WP Charitable LLC
 * @package Charitable/Templates/Campaign Page
 * @since   1.0.0
 * @version 1.0.0
 * @version 1.8.8.6
 */

$charitable_campaign = $view_args['campaign'];

/**
 * Do something before the campaign summary is rendered.
 *
 * @since 1.0.0
 *
 * @param Charitable_Campaign $campaign The Campaign instance.
 */
do_action( 'charitable_campaign_summary_before', $charitable_campaign );

?>
<div class="campaign-summary">
	<?php
	/**
	 * Do something while the campaign summary is rendered.
	 *
	 * By default, the following callbacks are run on the
	 * `charitable_campaign_summary` hook:
	 *
	 * - charitable_template_campaign_percentage_raised (priority: 4)
	 * - charitable_template_campaign_donation_summary (priority: 6)
	 * - charitable_template_campaign_donor_count (priority: 8)
	 * - charitable_template_campaign_time_left (priority: 10)
	 * - charitable_template_donate_button (priority: 12)
	 *
	 * @since 1.0.0
	 *
	 * @param Charitable_Campaign $campaign The Campaign instance.
	 */
	do_action( 'charitable_campaign_summary', $charitable_campaign );
	?>
</div>
<?php
/**
 * Do something after the campaign summary is rendered.
 *
 * @since 1.0.0
 *
 * @param Charitable_Campaign $campaign The Campaign instance.
 */
do_action( 'charitable_campaign_summary_after', $charitable_campaign );