is_uninstallable_plugin

Definition:
function is_uninstallable_plugin($plugin) {}

Whether the plugin can be uninstalled.

Parameters

  • string $plugin: Plugin path to check.

Return values

returns:Whether plugin can be uninstalled.

Source code

function is_uninstallable_plugin($plugin) {

	$file = plugin_basename($plugin);



	$uninstallable_plugins = (array) get_option('uninstall_plugins');

	if ( isset( $uninstallable_plugins[$file] ) || file_exists( WP_PLUGIN_DIR . '/' . dirname($file) . '/uninstall.php' ) )

		return true;



	return false;

}

2215

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: