WP_REST_Plugins_Controller::get_plugin_status( string $plugin ): string

In this article

Get’s the activation status for a plugin.

Parameters

$pluginstringrequired
The plugin file to check.

Return

string Either 'network-active', 'active' or 'inactive'.

Source

protected function get_plugin_status( $plugin ) {
	if ( is_plugin_active_for_network( $plugin ) ) {
		return 'network-active';
	}

	if ( is_plugin_active( $plugin ) ) {
		return 'active';
	}

	return 'inactive';
}

Changelog

VersionDescription
5.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.