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

February 12, 2011 


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