Tribe__Events__Aggregator__Tabs__New::maybe_display_aggregator_upsell()

Renders the “Missing Aggregator License” notice

Contents


Return

(string)


Top ↑

Source

File: src/Tribe/Aggregator/Tabs/New.php

	public function maybe_display_aggregator_upsell() {
		if ( defined( 'TRIBE_HIDE_UPSELL' ) ) {
			return;
		}

		if ( tribe( 'events-aggregator.main' )->is_service_active() ) {
			return;
		}

		ob_start();
		?>
		<div class="notice inline notice-info tribe-dependent tribe-notice-tribe-missing-aggregator-license" data-ref="tribe-missing-aggregator-license" data-depends="#tribe-ea-field-origin" data-condition-empty>

			<div class="upsell-banner">
				<img src="<?php echo esc_url( tribe_events_resource_url( 'images/aggregator/upsell-banner.png' ) ) ; ?>">
			</div>

			<h3><?php esc_html_e( 'Import Using Event Aggregator', 'the-events-calendar' ); ?></h3>

			<p><?php esc_html_e( 'With Event Aggregator, you can import events from iCalendar, Google, and Meetup.com in a jiffy.', 'the-events-calendar' ); ?></p>

			<a href="https://m.tri.be/196y" class="tribe-license-link tribe-button tribe-button-primary" target="_blank">
				<?php esc_html_e( 'Buy It Now', 'the-events-calendar' );?>
				<span class="screen-reader-text">
					<?php esc_html_e( 'opens in a new window', 'the-events-calendar' );?>
				</span>
			</a>

			<a href="https://m.tri.be/196z" class="tribe-license-link tribe-button tribe-button-secondary" target="_blank">
				<?php esc_html_e( 'Learn More', 'the-events-calendar' ); ?>
				<span class="screen-reader-text">
					<?php esc_html_e( 'opens in a new window', 'the-events-calendar' );?>
				</span>
			</a>
		</div>
		<?php

		return ob_get_clean();
	}