PUE::register()
Registers the filters required by the Plugin Update Engine.
Source
File: src/Tickets_Wallet_Plus/PUE.php
public function register() {
$this->container->singleton( static::class, $this );
$this->container->singleton( 'tickets-wallet.pue', $this );
add_action( 'tribe_helper_activation_complete', [ $this, 'load_plugin_update_engine' ] );
register_uninstall_hook( Plugin::FILE, [ 'tec_tickets_wallet_plus_uninstall' ] );
}
Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |