HEX
Server: LiteSpeed
System: Linux server315.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
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/Template/Promo.php
<?php
/**
 * Handles the manipulation of the promo to correctly render it in v2 views.
 *
 * @since   5.1.5
 *
 * @package Tribe\Events\Views\V2\Template
 */

namespace Tribe\Events\Views\V2\Template;

/**
 * Class Promo
 *
 * @since   5.1.5
 *
 * @package Tribe\Events\Views\V2\Template
 */
class Promo {

	/**
	 * Include the promo banner after the after component.
	 *
	 * @since 5.1.5
	 *
	 * @param string   $file     Complete path to include the PHP File.
	 * @param array    $name     Template name.
	 * @param Template $template Current instance of the Template.
	 *
	 * @return void  Template render has no return.
	 */
	public function action_add_promo_banner( $file, $name, $template ) {
		if ( ! tribe_get_option( 'donate-link', false ) ) {
			return;
		}

		tribe_events_promo_banner();
	}
}