File "Configuration.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/Customizer/Configuration.php
File size: 1.94 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Handles setting up the configuration data for v2 Customizer.
*
* @package Tribe\Events\Views\V2\Customizer
* @since 5.9.0
*/
namespace Tribe\Events\Views\V2\Customizer;
/**
* Class managing Configuration for the v2 Customizer.
*
* @package Tribe\Events\Views\V2\Customizer
* @since 5.9.0
*/
class Configuration {
/**
* Return the variables to be localized.
* localized under `tribe_events_customizer_live_preview_js_config` in Hooks.php
*
* @since 5.9.0
*
* @return array
*/
public function localize() {
$data = [
'selector' => self::get_selector(),
'default_font' => '"Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif',
];
return apply_filters( 'tribe_customizer_live_preview_js_config', $data );
}
/**
* Gets the selector for Customizer styles
* based on filters for applying to shortcodes and widgets.
*
* @since 5.9.0
*
* @return string The selector string.
*/
public static function get_selector() {
$tribe_events = '.tec-customizer, #tribe-events-pg-template, .tribe-events, .tribe-common';
/**
* Allows filtering to enforce applying Customizer styles to shortcode views.
*
* @since 5.9.0
*
* @param boolean $apply_to_shortcode Whether to apply Customizer styles to shortcodes (default = false).
*/
$apply_to_shortcode = apply_filters( 'tribe_customizer_should_print_shortcode_customizer_styles', false );
if ( ! $apply_to_shortcode ) {
$tribe_events .= ':not( .tribe-events-view--shortcode )';
}
/**
* Allows filtering to enforce NOT applying Customizer styles to widgets.
*
* @since 5.9.0
*
* @param boolean $apply_to_widget Whether to apply Customizer styles to widgets (default = true).
*/
$apply_to_widget = apply_filters( 'tribe_customizer_should_print_widget_customizer_styles', true );
if ( ! $apply_to_widget ) {
$tribe_events .= ':not( .tribe-events-widget )';
}
return $tribe_events;
}
}