File "Onboarding.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Tribe/Service_Providers/Onboarding.php
File size: 3.2 KB
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Tribe\Service_Providers;

use \Tribe\Onboarding\Main as Onboarding_Main;
use TEC\Common\Contracts\Service_Provider;
use TEC\Common\Asset;

/**
 * Class Onboarding
 *
 * @since 4.14.9
 *
 * Handles the registration and creation of our async process handlers.
 */
class Onboarding extends Service_Provider {


	/**
	 * The Onboarding assets group identifier.
	 *
	 * @var string
	 */
	public static $group_key = 'tribe-onboarding';

	/**
	 * Binds and sets up implementations.
	 *
	 * @since 4.14.9
	 */
	public function register() {
		if ( ! $this->is_enabled() ) {
			return;
		}

		$this->container->singleton( Onboarding_Main::class, Onboarding_Main::class );
		$this->container->singleton( static::class, static::class );

		$this->hooks();
	}

	/**
	 * Set up hooks for classes.
	 *
	 * @since 4.14.9
	 */
	protected function hooks() {
		add_action( 'tribe_common_loaded', [ $this, 'register_assets' ] );

		add_action( 'admin_enqueue_scripts', tribe_callback( Onboarding_Main::class, 'localize_tour' ) );
		add_action( 'admin_enqueue_scripts', tribe_callback( Onboarding_Main::class, 'localize_hints' ) );
	}

	/**
	 * Register assets associated with onboarding.
	 *
	 * @since 4.14.9
	 */
	public function register_assets() {
		$main = \Tribe__Main::instance();

		Asset::add(
			'tec-intro-js',
			'vendor/intro.js',
			\Tribe__Main::VERSION
		)
		->add_to_group( self::$group_key )
		->set_condition( [ $this, 'should_enqueue_assets' ] )
		->enqueue_on( 'admin_enqueue_scripts' )
		->prefix_asset_directory( false )
		->use_asset_file( false )
		->register();

		Asset::add(
			'tec-intro-styles',
			'vendor/intro.css',
			\Tribe__Main::VERSION
		)
		->add_to_group( self::$group_key )
		->set_condition( [ $this, 'should_enqueue_assets' ] )
		->enqueue_on( 'admin_enqueue_scripts' )
		->prefix_asset_directory( false )
		->use_asset_file( false )
		->register();


		tec_asset(
			$main,
			'tec-onboarding-styles',
			'onboarding.css',
			[ 'tec-intro-styles', 'tec-variables-skeleton', 'tec-variables-full' ],
			[ 'admin_enqueue_scripts' ],
			[
				'groups'       => self::$group_key,
				'conditionals' => [ $this, 'should_enqueue_assets' ],
			]
		);

		tec_asset(
			$main,
			'tec-onboarding-js',
			'onboarding.js',
			[
				'tribe-common',
				'tec-intro-js',
			],
			[ 'admin_enqueue_scripts' ],
			[
				'groups'       => self::$group_key,
				'in_footer'    => false,
				'localize'     => [
					'name' => 'TribeOnboarding',
					'data' => [
						'hintButtonLabel' => __( 'Got it', 'tribe-common' ),
					],
				],
				'conditionals' => [ $this, 'should_enqueue_assets' ],
			]
		);
	}

	/**
	 * Define if the assets for `Onboarding` should be enqueued or not.
	 *
	 * @since 4.14.9
	 *
	 * @return bool If the Onboarding assets should be enqueued or not.
	 */
	public function should_enqueue_assets() {
		return $this->is_enabled();
	}

	/**
	 * Check if the onboarding is enabled or not.
	 *
	 * @since 4.14.9
	 *
	 * @return bool
	 */
	public function is_enabled() {
		/**
		 * Filter to disable tribe onboarding
		 *
		 * @since 4.14.9
		 *
		 * @param bool $disabled If we want to disable the on boarding.
		 */
		$is_enabled = (bool) apply_filters( 'tec_onboarding_enabled', false );

		return $is_enabled && is_admin();
	}
}