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:
Diffstat (limited to 'core/Updates/2.16.2-b2.php')
-rw-r--r--core/Updates/2.16.2-b2.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/core/Updates/2.16.2-b2.php b/core/Updates/2.16.2-b2.php
new file mode 100644
index 0000000000..bae505e41a
--- /dev/null
+++ b/core/Updates/2.16.2-b2.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ *
+ */
+
+namespace Piwik\Updates;
+
+use Piwik\Updater;
+use Piwik\Updates as PiwikUpdates;
+
+/**
+ * Update for version 2.16.2-b2.
+ */
+class Updates_2_16_2_b2 extends PiwikUpdates
+{
+
+ public function doUpdate(Updater $updater)
+ {
+ $pluginManager = \Piwik\Plugin\Manager::getInstance();
+ $pluginName = 'UserId';
+
+ try {
+ if (!$pluginManager->isPluginActivated($pluginName)) {
+ $pluginManager->activatePlugin($pluginName);
+ }
+ } catch (\Exception $e) {
+ }
+ }
+} \ No newline at end of file