File "Notice.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/Customizer/Notice.php
File size: 2.15 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Handles notices having to do with Customizer.
*
* 5.9.0
*
* @package Tribe\Events\Views\V2\Customizer
*/
namespace Tribe\Events\Views\V2\Customizer;
/**
* Class Notice
*
* @since 5.9.0
*
* @package Tribe\Events\Views\V2\Customizer
*/
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.
'tribe_events_page_tec-events-settings', // New 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>'
);
}
}