Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
the-events-calendar
/
src
/
Tribe
/
Editor
:
Assets.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }