Notice

Class Notice


Source

File: src/Tribe/Views/V2/Customizer/Notice.php

class Notice {
	/**
	 * Extension hooks and initialization; exits if the extension is not authorized by Tribe Common to run.
	 *
	 * @since  5.9.0
	 */
	public function hook() {
		tribe_notice(
			'customizer_font_size_extension',
			[ $this, 'display_notice' ],
			[
				'type'     => 'warning',
				'dismiss'  => 1,
				'priority' => 0,
				'wrap'     => 'p',
			],
			[ $this, 'should_display' ]
		);
	}

	/**
	 * Checks if we have the TEC Inherit Theme Fonts Extension active
	 *
	 * @since  5.9.0
	 *
	 * @return boolean
	 */
	public function should_display() {
		if ( ! current_user_can( 'activate_plugins' ) ) {
			return false;
		}

		$current_screen = get_current_screen();

		$screens = [
			'customize', // Customizer
			'tribe_events_page_tribe-app-shop', // App shop.
			'events_page_tribe-app-shop', // App shop.
			'tribe_events_page_tribe-common', // Settings & Welcome.
			'events_page_tribe-common', // Settings & Welcome.
			'toplevel_page_tribe-common', // Settings & Welcome.
		];

		// If not a valid screen, don't display.
		if ( empty( $current_screen->id ) || ! in_array( $current_screen->id, $screens, true ) ) {
			return false;
		}

		return class_exists( 'Tribe\Extensions\InheritThemeFonts\Main' );
	}

	/**
	 * HTML for the notice.
	 *
	 * @since  5.9.0
	 *
	 * @return string
	 */
	public function display_notice() {
		/* translators: 1: opening <a> tag, 2: closing </a> tag. */
		return sprintf(
			esc_html_x(
				'You are using the Inherit Theme Fonts extension. Font control is now built into %1$sThe Events Calendar\'s options in the WordPress Customizer.%2$s Please disable the Inherit Theme Fonts extension to prevent conflicts with The Events Calendar.',
				'A link telling users to disable an extension that may conflict.',
				'the-events-calendar'
			),
			'<a href="https://evnt.is/1ast" target="_blank">',
			'</a>'
);
	}
}

Top ↑

Changelog

Changelog
Version Description
5.9.0 Introduced.

Top ↑

Methods

  • display_notice — HTML for the notice.
  • hook — Extension hooks and initialization; exits if the extension is not authorized by Tribe Common to run.
  • should_display — Checks if we have the TEC Inherit Theme Fonts Extension active