WP_Plugin_Install_List_Table::get_installed_plugin_slugs()protectedWP 4.0.0

Returns a list of slugs of installed plugins, if known.

Uses the transient data from the updates API to determine the slugs of known installed plugins. This might be better elsewhere, perhaps even within get_plugins().

Method of the class: WP_Plugin_Install_List_Table{}

No Hooks.

Return

Array.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_installed_plugin_slugs();

Changelog

Since 4.0.0 Introduced.

WP_Plugin_Install_List_Table::get_installed_plugin_slugs() code WP 6.5.2

protected function get_installed_plugin_slugs() {
	return array_keys( $this->get_installed_plugins() );
}