Tribe__Plugins::get_plugin_by_name( string $name )

Retrieves plugins details by plugin name


Parameters

$name

(string) (Required) Common name for the plugin, not necessarily the lengthy name in the WP Admin Plugins list


Top ↑

Return

(array|null)


Top ↑

Source

File: src/Tribe/Plugins.php

		public function get_plugin_by_name( $name ) {
			return $this->get_plugin_by_key( 'short_name', $name );
		}