WP_Plugin_Install_List_Table::get_installed_plugin_slugs() – Return a list of slugs of installed plugins, if known.
You appear to be a bot. Output may be restricted
Description
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().
Usage
$array = WP_Plugin_Install_List_Table::get_installed_plugin_slugs();
Parameters
Returns
array
Source
File name: wordpress/wp-admin/includes/class-wp-plugin-install-list-table.php
Lines:
1 to 3 of 3
protected function get_installed_plugin_slugs() { return array_keys( $this->WP_Plugin_Install_List_Table::get_installed_plugins() ); }