File: /var/www/html/triad-infosec/wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Assets.php
<?php
/**
* Handles registering all Assets for the Events Virtual Plugin.
*
* To remove a Asset you can use the global assets handler:
*
* ```php
* tribe( 'assets' )->remove( 'asset-name' );
* ```
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @package Tribe\Events\Virtual
*/
namespace Tribe\Events\Virtual;
use Tribe\Events\Views\V2\Assets as Event_Assets;
use Tribe\Events\Views\V2\Template_Bootstrap;
use Tribe__Events__Templates;
use Tribe__Events__Main as TEC;
use Tribe__Admin__Helpers as Admin_Helpers;
use TEC\Common\Contracts\Service_Provider;
/**
* Register Assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @package Tribe\Events\Virtual
*/
class Assets extends Service_Provider {
/**
* Key for this group of assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @var string
*/
public static $group_key = 'events-virtual';
/**
* Key for the group of assets required by shortcodes.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @var string
*/
public static $shortcode_group_key = 'events-virtual-shortcode';
/**
* Caches the result of the `should_enqueue_frontend` check.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @var bool
*/
protected $should_enqueue_frontend;
/**
* Caches the result of the `should_enqueue_single_event` check.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @var bool
*/
protected $should_enqueue_single_event;
/**
* Binds and sets up implementations.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*/
public function register() {
$this->container->singleton( static::class, $this );
$this->container->singleton( 'events-virtual.assets', $this );
$this->enqueue_admin_assets();
$this->enqueue_frontend_assets();
}
/**
* Setup admin assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*/
protected function enqueue_admin_assets() {
$plugin = tribe( Plugin::class );
$admin_helpers = Admin_Helpers::instance();
tribe_asset(
$plugin,
'tribe-events-virtual-admin-css',
'events-virtual-admin.css',
[ 'tec-variables-full', 'tribe-tooltip' ],
'admin_enqueue_scripts',
[
'conditionals' => [
'operator' => 'OR',
[ $admin_helpers, 'is_screen' ],
],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-admin-js',
'events-virtual-admin.js',
[ 'jquery', 'tribe-dropdowns', 'tribe-tooltip-js', 'tribe-events-views-v2-accordion' ],
'admin_enqueue_scripts',
[
'conditionals' => [
'operator' => 'OR',
[ $admin_helpers, 'is_screen' ],
],
'localize' => [
'name' => 'tribe_events_virtual_strings',
'data' => [
'deleteConfirm' => self::get_confirmation_to_delete_account(),
],
],
]
);
}
/**
* Setup frontend assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*/
protected function enqueue_frontend_assets() {
$plugin = tribe( Plugin::class );
tribe_asset(
$plugin,
'tribe-events-virtual-skeleton',
'events-virtual-skeleton.css',
[ 'tribe-events-views-v2-skeleton' ],
'wp_enqueue_scripts',
[
'priority' => 10,
'conditionals' => [ $this, 'should_enqueue_frontend' ],
'groups' => [ static::$group_key, static::$shortcode_group_key ],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-full',
'events-virtual-full.css',
[ 'tribe-events-views-v2-full' ],
'wp_enqueue_scripts',
[
'priority' => 10,
'conditionals' => [
'operator' => 'AND',
[ $this, 'should_enqueue_frontend' ],
[ tribe( Event_Assets::class ), 'should_enqueue_full_styles' ],
],
'groups' => [ static::$group_key, static::$shortcode_group_key ],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-widgets-v2-common-skeleton',
'widgets-events-common-skeleton.css',
[],
'wp_print_footer_scripts',
[
'print' => true,
'priority' => 5,
'conditionals' => [
[ $this, 'should_load_widget_styles' ],
],
'groups' => $this->get_widget_groups(),
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-widgets-v2-common-full',
'widgets-events-common-full.css',
[
'tribe-events-virtual-widgets-v2-common-skeleton',
],
'wp_print_footer_scripts',
[
'print' => true,
'priority' => 5,
'conditionals' => [
'operator' => 'AND',
[ tribe( Event_Assets::class ), 'should_enqueue_full_styles' ],
[ $this, 'should_load_widget_styles' ],
],
'groups' => $this->get_widget_groups(),
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-single-skeleton',
'events-virtual-single-skeleton.css',
[],
'wp_enqueue_scripts',
[
'priority' => 10,
'conditionals' => [ $this, 'should_enqueue_single_event' ],
'groups' => [ static::$group_key ],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-single-full',
'events-virtual-single-full.css',
[ 'tribe-events-virtual-single-skeleton' ],
'wp_enqueue_scripts',
[
'priority' => 10,
'conditionals' => [
'operator' => 'AND',
[ $this, 'should_enqueue_single_event' ],
[ tribe( Event_Assets::class ), 'should_enqueue_full_styles' ],
],
'groups' => [ static::$group_key ],
]
);
$overrides_stylesheet = Tribe__Events__Templates::locate_stylesheet( 'tribe-events/tribe-events-virtual-override.css' );
if ( ! empty( $overrides_stylesheet ) ) {
tribe_asset(
$plugin,
'tribe-events-virtual-override',
$overrides_stylesheet,
[
'tribe-common-full-style',
'tribe-events-views-v2-skeleton',
],
'wp_enqueue_scripts',
[
'groups' => [
static::$group_key,
Event_Assets::$group_key,
],
]
);
}
tribe_asset(
$plugin,
'tribe-events-virtual-single-v2-skeleton',
'events-virtual-single-v2-skeleton.css',
[],
'wp_enqueue_scripts',
[
'priority' => 15,
'conditionals' => [
[ $this, 'should_enqueue_single_event_styles' ],
],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-single-v2-full',
'events-virtual-single-v2-full.css',
[
'tribe-events-virtual-single-v2-skeleton',
],
'wp_enqueue_scripts',
[
'priority' => 15,
'conditionals' => [
'operator' => 'AND',
[ $this, 'should_enqueue_single_event_styles' ],
[ tribe( Event_Assets::class ), 'should_enqueue_full_styles' ],
],
]
);
tribe_asset(
$plugin,
'tribe-events-v2-virtual-single-block',
'events-virtual-single-block.css',
[
'tec-variables-full',
'tec-variables-skeleton',
],
'wp_enqueue_scripts',
[
'priority' => 15,
'conditionals' => [
'operator' => 'OR',
[ $this, 'should_enqueue_single_virtual_editor_assets' ],
[ tribe( Event_Assets::class ), 'should_enqueue_single_event_block_editor_styles' ],
],
]
);
tribe_asset(
$plugin,
'tribe-events-virtual-single-js',
'events-virtual-single.js',
[ 'jquery' ],
'wp_enqueue_scripts',
[
'priority' => 10,
'conditionals' => [ $this, 'should_enqueue_single_event' ],
'groups' => [ static::$group_key ],
'localize' => [
'name' => 'tribe_events_virtual_settings',
'data' => [
'facebookAppId' => static::get_facebook_app_id(),
],
],
]
);
tribe_asset(
$plugin,
'tribe-virtual-admin-v2-single-block',
'events-virtual-admin-single-block.css',
[
'tec-variables-full',
'tec-variables-skeleton',
],
[ 'admin_enqueue_scripts' ],
[
'conditionals' => [
[ $this, 'should_enqueue_admin' ],
],
]
);
}
/**
* Checks if we should enqueue frontend assets for the V2 views.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return bool Whether the frontend assets should be enqueued or not.
*/
public function should_enqueue_frontend() {
if ( null !== $this->should_enqueue_frontend ) {
return $this->should_enqueue_frontend;
}
$should_enqueue = tribe( Template_Bootstrap::class )->should_load();
/**
* Allow filtering of where the base Frontend Assets will be loaded.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
* @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
* @param bool $should_enqueue Whether the frontend assets should be enqueued or not.
*/
$should_enqueue = apply_filters( 'tribe_events_virtual_assets_should_enqueue_frontend', $should_enqueue );
$this->should_enqueue_frontend = $should_enqueue;
return $should_enqueue;
}
/**
* Checks if we should enqueue event single assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return bool Whether the event single assets should be enqueued or not.
*/
public function should_enqueue_single_event() {
if ( null !== $this->should_enqueue_single_event ) {
return $this->should_enqueue_single_event;
}
$should_enqueue = tribe( Template_Bootstrap::class )->is_single_event();
/**
* Allow filtering of where the event single assets will be loaded.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
* @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
*
* @param bool $should_enqueue Whether the event single assets should be enqueued or not.
*/
$should_enqueue = apply_filters( 'tribe_events_virtual_assets_should_enqueue_single_event', $should_enqueue );
$this->should_enqueue_single_event = $should_enqueue;
return $should_enqueue;
}
/**
* Verifies if on Event Single in order to enqueue the override styles for Single Event
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return boolean
*/
public function should_enqueue_single_event_styles() {
// Bail if not Single Event.
if ( ! tribe( Template_Bootstrap::class )->is_single_event() ) {
return false;
}
// Bail if Block Editor.
if ( has_blocks( get_queried_object_id() ) ) {
return false;
}
return true;
}
/**
* Verifies if we should load widget icon styles.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return boolean If the icon styles should load.
*/
public function should_load_widget_styles() {
$should_enqueue = false;
/**
* Allow filtering of where the widget assets will be loaded.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
* @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
*
* @param bool $should_enqueue Whether the widget assets should be enqueued or not.
*/
$should_enqueue = apply_filters( 'tribe_events_virtual_assets_should_enqueue_widget_styles', $should_enqueue );
return $should_enqueue;
}
/**
* Allows widgets to add themselves to the css groups for icon styles.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return array The list of groups.
*/
public function get_widget_groups() {
$groups = [];
/**
* Allow filtering of the widget asset groups.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
* @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
*
* @param array $groups List of asset groups.
*/
return apply_filters( 'tribe_events_virtual_assets_should_enqueue_widget_groups', $groups );
}
/**
* Fires to include the virtual event assets on shortcodes.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*/
public function load_on_shortcode() {
tribe_asset_enqueue( 'tribe-events-virtual-skeleton' );
if ( tribe( Event_Assets::class )->should_enqueue_full_styles() ) {
tribe_asset_enqueue( 'tribe-events-virtual-full' );
}
}
/**
* Get the confirmation text for deleting a virtual settings.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return string The confirmation text.
*/
public static function get_confirmation_to_delete_account() {
if (
tribe( 'editor' )->should_load_blocks()
&& tribe( 'events.editor.compatibility' )->is_blocks_editor_toggled_on()
) {
return _x(
"Are you sure you want to delete the virtual settings? \nThis will also delete any virtual event blocks for this event. \n\nThis operation cannot be undone.",
'The block editor message to display to confirm a user would like to delete the virtual settings.',
'tribe-events-calendar-pro'
);
}
return _x(
"Are you sure you want to delete the virtual settings? \n\nThis operation cannot be undone.",
'The classic editor message to display to confirm a user would like to delete the virtual settings.',
'tribe-events-calendar-pro'
);
}
/**
* Get the Facebook app id from the options.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return string The Facebook app id or empty string if not found.
*/
public static function get_facebook_app_id() {
return tribe_get_option( 'tribe_facebook_app_id', '' );
}
/**
* Load assets on the add or edit pages of the block editor only.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return bool Whether to load assets.
*/
public function should_enqueue_admin() {
if ( ! is_admin() ) {
return false;
}
if ( ! get_current_screen()->is_block_editor ) {
return false;
}
if ( ! tribe( 'admin.helpers' )->is_post_type_screen() ) {
return false;
}
return true;
}
/**
* If V1 is active enqueue the accordion script for YouTube feature.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @deprecated 1.12.0 - Deprecated with removal of Legacy-V1 views.
*/
protected function maybe_enqueue_accordion_for_v1() {
if ( tribe_events_views_v2_is_enabled() ) {
return;
}
$admin_helpers = Admin_Helpers::instance();
tribe_asset(
TEC::instance(),
'tribe-events-views-v2-accordion',
'views/accordion.js',
[
'jquery',
'tribe-common',
],
'admin_enqueue_scripts',
[
'conditionals' => [
'operator' => 'OR',
[ $admin_helpers, 'is_screen' ],
],
]
);
}
/**
* Determines whether or not we should enqueue single virtual editor assets.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
*
* @return bool
*/
public function should_enqueue_single_virtual_editor_assets() {
$should_enqueue = false;
/**
* Allow filtering of where the styles will be loaded.
*
* @since 7.0.0 Migrated to Events Pro from Events Virtual.
* @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
*
* @param bool $should_enqueue Whether to enqueue the assets or not.
*/
return apply_filters( 'tec_events_virtual_enqueue_single_virtual_editor_assets', $should_enqueue );
}
}