Provider
Service provider for the Tickets Emails.
Source
File: src/Tickets/Emails/Provider.php
class Provider extends tad_DI52_ServiceProvider {
/**
* Register the provider singletons.
*
* @since 5.5.6
*/
public function register() {
// If not enabled, do not load Tickets Emails system.
// @todo @codingmusician @rafsuntaskin @juanfra: Remove this for 5.7.0 (When we release Tickets Emails)
if ( ! tec_tickets_emails_is_enabled() ) {
return;
}
$this->register_assets();
$this->register_hooks();
// Register singletons.
$this->container->singleton( static::class, $this );
$this->container->singleton( 'tickets.emails.provider', $this );
$this->container->singleton( Admin\Emails_Tab::class );
$this->container->singleton( Admin\Preview_Modal::class );
$this->container->register( Email_Handler::class );
$this->container->singleton( Web_View::class );
}
/**
* Registers the provider handling all the 1st level filters and actions for Tickets Emails.
*
* @since 5.5.6
*/
protected function register_assets() {
$assets = new Assets( $this->container );
$assets->register();
$this->container->singleton( Assets::class, $assets );
$this->container->singleton( 'tickets.emails.assets', $assets );
}
/**
* Registers the provider handling all the 1st level filters and actions for Tickets Emails.
*
* @since 5.5.6
*/
protected 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 );
$this->container->singleton( 'tickets.emails.hooks', $hooks );
}
}
Changelog
| Version | Description |
|---|---|
| 5.5.6 | Introduced. |