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:
-rw-r--r--core/Updates/2.16.2-b2.php33
-rw-r--r--plugins/UserId/lang/en.json3
2 files changed, 35 insertions, 1 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..becda51b8a
--- /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) {
+ }
+ }
+}
diff --git a/plugins/UserId/lang/en.json b/plugins/UserId/lang/en.json
index ec320c4079..40d9f3660d 100644
--- a/plugins/UserId/lang/en.json
+++ b/plugins/UserId/lang/en.json
@@ -1,6 +1,7 @@
{
"UserId": {
"UserId": "UserId",
- "UserReportTitle": "Users"
+ "UserReportTitle": "Users",
+ "PluginDescription": "Shows user reports"
}
} \ No newline at end of file