Service_Provider::register_hooks()
Register the hooks for Tribe_Customizer integration.
Source
File: src/Tribe/Views/V2/Customizer/Service_Provider.php
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 );
$this->container->singleton( 'pro.views.v2.customizer.hooks', $hooks );
}
Changelog
| Version | Description |
|---|---|
| 5.8.0 | Introduced. |