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:
authorStefan Giehl <stefan@matomo.org>2020-04-24 17:59:05 +0300
committerGitHub <noreply@github.com>2020-04-24 17:59:05 +0300
commit115527353a9e75e01aa4d263408956ae45403bea (patch)
treeb391f654ddf7c8d5d2e9d0c9285cdc6fc17710f2 /plugins/ExamplePlugin
parenta8d917778e75346eab9509ac9707f7e6e2e6c58d (diff)
Update doc blocks with new name (#15857)
* update doc blocks with new name * submodule updates * updates expected UI files
Diffstat (limited to 'plugins/ExamplePlugin')
-rw-r--r--plugins/ExamplePlugin/API.php2
-rw-r--r--plugins/ExamplePlugin/Archiver.php3
-rw-r--r--plugins/ExamplePlugin/Controller.php2
-rw-r--r--plugins/ExamplePlugin/ExamplePlugin.php2
-rw-r--r--plugins/ExamplePlugin/Menu.php2
-rw-r--r--plugins/ExamplePlugin/Tasks.php2
-rw-r--r--plugins/ExamplePlugin/Updates/0.0.2.php2
-rw-r--r--plugins/ExamplePlugin/Widgets/MyExampleWidget.php2
-rw-r--r--plugins/ExamplePlugin/angularjs/directive-component/component.controller.js4
-rw-r--r--plugins/ExamplePlugin/angularjs/directive-component/component.directive.js4
-rw-r--r--plugins/ExamplePlugin/angularjs/example-component/example-component.component.js4
-rw-r--r--plugins/ExamplePlugin/javascripts/plugin.js4
-rw-r--r--plugins/ExamplePlugin/tests/Fixtures/SimpleFixtureTrackFewVisits.php4
-rw-r--r--plugins/ExamplePlugin/tests/Integration/SimpleTest.php2
-rw-r--r--plugins/ExamplePlugin/tests/System/SimpleSystemTest.php2
-rw-r--r--plugins/ExamplePlugin/tests/UI/SimpleUITest_spec.js4
-rw-r--r--plugins/ExamplePlugin/tests/Unit/SimpleTest.php2
17 files changed, 23 insertions, 24 deletions
diff --git a/plugins/ExamplePlugin/API.php b/plugins/ExamplePlugin/API.php
index a1d4933e71..44d67cd80c 100644
--- a/plugins/ExamplePlugin/API.php
+++ b/plugins/ExamplePlugin/API.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/Archiver.php b/plugins/ExamplePlugin/Archiver.php
index f0fe56251b..f507c6087a 100644
--- a/plugins/ExamplePlugin/Archiver.php
+++ b/plugins/ExamplePlugin/Archiver.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
@@ -10,7 +10,6 @@ namespace Piwik\Plugins\ExamplePlugin;
/**
* Class Archiver
- * @package Piwik\Plugins\ExamplePlugin
*
* Archiver is class processing raw data into ready ro read reports.
* It must implement two methods for aggregating daily reports
diff --git a/plugins/ExamplePlugin/Controller.php b/plugins/ExamplePlugin/Controller.php
index 67dd645581..4b8dac40e6 100644
--- a/plugins/ExamplePlugin/Controller.php
+++ b/plugins/ExamplePlugin/Controller.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/ExamplePlugin.php b/plugins/ExamplePlugin/ExamplePlugin.php
index 28defbe7ca..f974975c42 100644
--- a/plugins/ExamplePlugin/ExamplePlugin.php
+++ b/plugins/ExamplePlugin/ExamplePlugin.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/Menu.php b/plugins/ExamplePlugin/Menu.php
index d825f53f47..349403644b 100644
--- a/plugins/ExamplePlugin/Menu.php
+++ b/plugins/ExamplePlugin/Menu.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/Tasks.php b/plugins/ExamplePlugin/Tasks.php
index d672898a6b..07ac02b4ff 100644
--- a/plugins/ExamplePlugin/Tasks.php
+++ b/plugins/ExamplePlugin/Tasks.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/Updates/0.0.2.php b/plugins/ExamplePlugin/Updates/0.0.2.php
index cff1000ffe..6f1ec130f6 100644
--- a/plugins/ExamplePlugin/Updates/0.0.2.php
+++ b/plugins/ExamplePlugin/Updates/0.0.2.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/Widgets/MyExampleWidget.php b/plugins/ExamplePlugin/Widgets/MyExampleWidget.php
index a3d503fb37..c9b70b8187 100644
--- a/plugins/ExamplePlugin/Widgets/MyExampleWidget.php
+++ b/plugins/ExamplePlugin/Widgets/MyExampleWidget.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/angularjs/directive-component/component.controller.js b/plugins/ExamplePlugin/angularjs/directive-component/component.controller.js
index 018b4eff6f..1c83121d33 100644
--- a/plugins/ExamplePlugin/angularjs/directive-component/component.controller.js
+++ b/plugins/ExamplePlugin/angularjs/directive-component/component.controller.js
@@ -1,7 +1,7 @@
/*!
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
(function () {
diff --git a/plugins/ExamplePlugin/angularjs/directive-component/component.directive.js b/plugins/ExamplePlugin/angularjs/directive-component/component.directive.js
index 573435de1c..0d7bb2dd84 100644
--- a/plugins/ExamplePlugin/angularjs/directive-component/component.directive.js
+++ b/plugins/ExamplePlugin/angularjs/directive-component/component.directive.js
@@ -1,7 +1,7 @@
/*!
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
diff --git a/plugins/ExamplePlugin/angularjs/example-component/example-component.component.js b/plugins/ExamplePlugin/angularjs/example-component/example-component.component.js
index ecba06de34..e9f40184db 100644
--- a/plugins/ExamplePlugin/angularjs/example-component/example-component.component.js
+++ b/plugins/ExamplePlugin/angularjs/example-component/example-component.component.js
@@ -1,7 +1,7 @@
/*!
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
diff --git a/plugins/ExamplePlugin/javascripts/plugin.js b/plugins/ExamplePlugin/javascripts/plugin.js
index 1f14f0afb7..617ea7b33f 100644
--- a/plugins/ExamplePlugin/javascripts/plugin.js
+++ b/plugins/ExamplePlugin/javascripts/plugin.js
@@ -1,7 +1,7 @@
/*!
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
diff --git a/plugins/ExamplePlugin/tests/Fixtures/SimpleFixtureTrackFewVisits.php b/plugins/ExamplePlugin/tests/Fixtures/SimpleFixtureTrackFewVisits.php
index 2d157a44e4..71fc8d0e6d 100644
--- a/plugins/ExamplePlugin/tests/Fixtures/SimpleFixtureTrackFewVisits.php
+++ b/plugins/ExamplePlugin/tests/Fixtures/SimpleFixtureTrackFewVisits.php
@@ -1,8 +1,8 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\ExamplePlugin\tests\Fixtures;
diff --git a/plugins/ExamplePlugin/tests/Integration/SimpleTest.php b/plugins/ExamplePlugin/tests/Integration/SimpleTest.php
index 1612e30d6b..4a1700fc4b 100644
--- a/plugins/ExamplePlugin/tests/Integration/SimpleTest.php
+++ b/plugins/ExamplePlugin/tests/Integration/SimpleTest.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/tests/System/SimpleSystemTest.php b/plugins/ExamplePlugin/tests/System/SimpleSystemTest.php
index ab6fc6d131..6cd0980cf9 100644
--- a/plugins/ExamplePlugin/tests/System/SimpleSystemTest.php
+++ b/plugins/ExamplePlugin/tests/System/SimpleSystemTest.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
diff --git a/plugins/ExamplePlugin/tests/UI/SimpleUITest_spec.js b/plugins/ExamplePlugin/tests/UI/SimpleUITest_spec.js
index 23eaabff2b..fead25417d 100644
--- a/plugins/ExamplePlugin/tests/UI/SimpleUITest_spec.js
+++ b/plugins/ExamplePlugin/tests/UI/SimpleUITest_spec.js
@@ -1,9 +1,9 @@
/*!
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* Screenshot integration tests.
*
- * @link http://piwik.org
+ * @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
diff --git a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
index 0369d0316c..08bb430ada 100644
--- a/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
+++ b/plugins/ExamplePlugin/tests/Unit/SimpleTest.php
@@ -1,6 +1,6 @@
<?php
/**
- * Piwik - free/libre analytics platform
+ * Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later