File "Service_Provider.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Integrations/Hello_Elementor/Service_Provider.php
File size: 611 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Handles The Events Calendar integration with the "Hello Elementor" theme.
 *
 * @since   5.7.0
 *
 * @package Tribe\Events\Integrations\Hello_Elementor
 */

namespace Tribe\Events\Integrations\Hello_Elementor;

use TEC\Common\Contracts\Service_Provider as Provider_Contract;


/**
 * Class Service_Provider
 *
 * @since   5.7.0
 *
 * @package Tribe\Events\Integrations\Hello_Elementor
 */
class Service_Provider extends Provider_Contract {

	public function register() {
		if ( 'hello-elementor' !== get_template() ) {
			return;
		}
		require_once __DIR__ . '/hello-elementor-functions.php';
	}
}