File "Assets.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Views/V2/Widgets/Assets.php
File size: 1.57 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Handles registering all Assets for the Events V2 Widgets
*
* To remove a Assets:
* tribe( 'assets' )->remove( 'asset-name' );
*
* @since 5.5.0
*
* @package Tribe\Events\Views\V2\Widgets
*/
namespace Tribe\Events\Views\V2\Widgets;
use Tribe__Events__Main as Plugin;
use Tribe\Events\Views\V2\Assets as TEC_Assets;
use TEC\Common\Contracts\Service_Provider;
/**
* Register Assets related to Widgets.
*
* @since 5.5.0
*
* @package Tribe\Events\Views\V2\Widgets
*/
class Assets extends Service_Provider {
/**
* Binds and sets up implementations.
*
* @since 5.5.0
*/
public function register() {
$plugin = Plugin::instance();
tec_asset(
$plugin,
'tribe-events-widgets-v2-events-list-skeleton',
'widget-events-list-skeleton.css',
[
'tribe-common-skeleton-style'
],
'wp_print_footer_scripts',
[
'print' => true,
'priority' => 5,
'conditionals' => [
[ Widget_List::class, 'is_widget_in_use' ],
],
'groups' => [
Widget_List::get_css_group(),
],
]
);
tec_asset(
$plugin,
'tribe-events-widgets-v2-events-list-full',
'widget-events-list-full.css',
[
'tribe-common-full-style',
'tribe-events-widgets-v2-events-list-skeleton',
],
'wp_print_footer_scripts',
[
'print' => true,
'priority' => 5,
'conditionals' => [
'operator' => 'AND',
[ tribe( TEC_Assets::class ), 'should_enqueue_full_styles' ],
[ Widget_List::class, 'is_widget_in_use' ],
],
'groups' => [
Widget_List::get_css_group(),
],
]
);
}
}