Tribe__Plugins::get_plugin_by_name( string $name )
Retrieves plugins details by plugin name
Contents
Parameters
- $name
-
(string) (Required) Common name for the plugin, not necessarily the lengthy name in the WP Admin Plugins list
Return
(array|null)
Source
File: src/Tribe/Plugins.php
public function get_plugin_by_name( $name ) {
return $this->get_plugin_by_key( 'short_name', $name );
}