Piwik\Plugin\Manager::isPluginUninstallable PHP Method

isPluginUninstallable() private method

Returns true if the plugin can be uninstalled. Any non-core plugin can be uninstalled.
private isPluginUninstallable ( $name ) : boolean
$name
return boolean
    private function isPluginUninstallable($name)
    {
        return !$this->isPluginBundledWithCore($name);
    }
Manager