Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-07-17 03:02:25 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-17 03:02:25 +0400
commit2cfe210dbbcc812be95a66404d87553af8078520 (patch)
treebc86d3cf73f86e8db084e7713ae504e25846e68d /core/Updates.php
parentea091e48fcde6161d98ee5fc08cd97a783b2dbd5 (diff)
Refs #546 Adding core "Uninstall" feature for Plugins and Themes + Cleanups + fix build by moving constant to PluginsManager
Todo * ask for confirmation: "Do you want to uninstall X?" // warn that plugin-specific data may be deleted as part of calling the plugin's uninstall method, and may not be recoverable. * call uninstall() method on the plugin class * verify core plugins cant be uninstalled
Diffstat (limited to 'core/Updates.php')
-rw-r--r--core/Updates.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/core/Updates.php b/core/Updates.php
index 91bdca17e7..b9409de5ea 100644
--- a/core/Updates.php
+++ b/core/Updates.php
@@ -108,9 +108,5 @@ abstract class Piwik_Updates
}
}
- public static function deletePluginFromFilesystem($plugin)
- {
- Piwik::unlinkRecursive(PIWIK_INCLUDE_PATH . '/plugins/' . $plugin, $deleteRootToo = true);
- }
}