| Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Recurrence/Provider.php |
<?php
namespace TEC\Tickets\Recurrence;
use TEC\Common\Contracts\Service_Provider;
use TEC\Events\Custom_Tables\V1\Migration\State;
class Provider extends Service_Provider {
/**
* @inheritDoc
*/
public function register() {
if ( ! class_exists( 'TEC\Events_Pro\Custom_Tables\V1\Provider', false ) || ! class_exists( 'TEC\Events\Custom_Tables\V1\Migration\State', false ) ) {
return;
}
if ( ! \TEC\Events\Custom_Tables\V1\Provider::is_active() ) {
return;
}
if ( ! tribe( State::class )->is_migrated() ) {
return;
}
$this->container->singleton( Compatibility::class );
$this->register_hooks();
}
public function register_hooks() {
$hooks = new Hooks( $this->container );
$hooks->register();
// Allow Hooks to be removed, by having the them registered to the container
$this->container->singleton( Hooks::class, $hooks );
}
}