File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
<?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();
}
}
