Telemetry::get_plugin_slug()
Get the slug of the plugin.
Source
File: src/Common/Telemetry/Telemetry.php
public static function get_plugin_slug() {
if ( empty( self::$plugin_slug ) ) {
self::$plugin_slug = self::get_parent_plugin_slug();
}
return self::$plugin_slug;
}
Changelog
| Version | Description |
|---|---|
| 5.1.0 | Introduced. |