File "Provider.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Common/Libraries/Provider.php
File size: 1.16 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace TEC\Common\Libraries;
use TEC\Common\Contracts\Service_Provider;
use TEC\Common\StellarWP\Assets;
use TEC\Common\StellarWP\DB;
use TEC\Common\StellarWP\Schema;
use Tribe__Main as Common;
class Provider extends Service_Provider {
/**
* Hook prefix.
*
* @since 5.0.10
*
* @var string
*/
protected static $hook_prefix = 'tec';
/**
* Binds and sets up implementations.
*
* @since 5.0.10
*/
public function register() {
$this->container->singleton( static::class, $this );
tribe_register_provider( Installer\Provider::class );
tribe_register_provider( Uplink_Controller::class );
DB\Config::setHookPrefix( $this->get_hook_prefix() );
Assets\Config::set_hook_prefix( $this->get_hook_prefix() );
Assets\Config::set_path( Common::instance()->plugin_path . 'src/resources/' );
Assets\Config::set_version( Common::VERSION );
Assets\Config::set_relative_asset_path( 'src/resources/' );
Schema\Config::set_db( DB\DB::class );
Schema\Config::set_container( tribe() );
}
/**
* Gets the hook prefix.
*
* @since 5.0.10
*
* @return string
*/
public function get_hook_prefix(): string {
return static::$hook_prefix;
}
}