Telemetry::init()
Initializes the plugins and triggers the “loaded” action.
Return
(void)
Source
File: src/Common/Telemetry/Telemetry.php
public function init(): void {
$this->register_tec_telemetry_plugins();
/**
* Allow plugins to hook in and add themselves,
* running their own actions once Telemetry is initiated.
*
* @since 5.1.0
*
* @param self $telemetry The Telemetry instance.
*/
do_action( 'tec_common_telemetry_loaded', $this );
}
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Introduced. |