Service_Provider::register()
Registers the bindings and hooks the filters required for the ECP->TEC Customizer integration to work.
Source
File: src/Tribe/Views/V2/Customizer/Service_Provider.php
public function register() {
$this->container->singleton( 'pro.views.v2.customizer.provider', $this );
$this->register_hooks();
// Events Bar overrides and additions.
tribe_register( Events_Bar::class, Events_Bar::class );
// Global Elements overrides and additions.
tribe_register( Global_Elements::class, Global_Elements::class );
}
Changelog
| Version | Description |
|---|---|
| 5.8.0 | Introduced. |