![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/giraluanda.com/wp-content/plugins/the-events-calendar/src/Tribe/Editor/ |
<?php /** * Events Gutenberg Assets * * @since 4.7 */ class Tribe__Events__Editor__Assets { /** * Caches the result of the `should_enqueue_frontend` check. * * @since 4.9.13 * * @var bool */ protected $should_enqueue_frontend; /** * * @since 4.7 * * @return void */ public function hook() { } /** * Registers and Enqueues the assets * * @since 4.7 * * @param string $key Which key we are checking against * * @return boolean */ public function register() { $plugin = tribe( 'tec.main' ); } /** * Checks if we should enqueue frontend assets * * @since 4.7 * @since 4.9.13 Cache the check value. * * @return bool */ public function should_enqueue_frontend() { if ( null !== $this->should_enqueue_frontend ) { return $this->should_enqueue_frontend; } $should_enqueue = ( tribe_is_event_query() || tribe_is_event_organizer() || tribe_is_event_venue() || is_active_widget( false, false, 'tribe-events-list-widget' ) ); /** * Allow filtering of where the base Frontend Assets will be loaded * * @since 4.7 * * @param bool $should_enqueue */ $should_enqueue = apply_filters( 'tribe_events_editor_assets_should_enqueue_frontend', $should_enqueue ); $this->should_enqueue_frontend = $should_enqueue; return $should_enqueue; } }