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 'plugins/ScheduledReports')
-rw-r--r--plugins/ScheduledReports/API.php2
-rw-r--r--plugins/ScheduledReports/Controller.php2
-rw-r--r--plugins/ScheduledReports/GeneratedReport.php2
-rw-r--r--plugins/ScheduledReports/Menu.php2
-rw-r--r--plugins/ScheduledReports/Model.php2
-rw-r--r--plugins/ScheduledReports/ReportEmailGenerator.php2
-rw-r--r--plugins/ScheduledReports/ReportEmailGenerator/AttachedFileReportEmailGenerator.php2
-rw-r--r--plugins/ScheduledReports/ReportEmailGenerator/HtmlReportEmailGenerator.php2
-rw-r--r--plugins/ScheduledReports/ScheduledReports.php2
-rw-r--r--plugins/ScheduledReports/SubscriptionModel.php2
-rw-r--r--plugins/ScheduledReports/Tasks.php2
-rw-r--r--plugins/ScheduledReports/config/config.php2
-rw-r--r--plugins/ScheduledReports/config/tcpdf_config.php2
-rw-r--r--plugins/ScheduledReports/tests/Integration/ApiTest.php2
-rw-r--r--plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php2
-rw-r--r--plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/HtmlReportEmailGeneratorTest.php2
-rw-r--r--plugins/ScheduledReports/tests/Integration/ScheduledReportsTest.php2
-rw-r--r--plugins/ScheduledReports/tests/Integration/SubscriptionModelTest.php2
18 files changed, 18 insertions, 18 deletions
diff --git a/plugins/ScheduledReports/API.php b/plugins/ScheduledReports/API.php
index 7cdb0505a7..3143bcd294 100644
--- a/plugins/ScheduledReports/API.php
+++ b/plugins/ScheduledReports/API.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/Controller.php b/plugins/ScheduledReports/Controller.php
index a204f4a9c1..22b977cdd5 100644
--- a/plugins/ScheduledReports/Controller.php
+++ b/plugins/ScheduledReports/Controller.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/GeneratedReport.php b/plugins/ScheduledReports/GeneratedReport.php
index 6baf311850..878952999c 100644
--- a/plugins/ScheduledReports/GeneratedReport.php
+++ b/plugins/ScheduledReports/GeneratedReport.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/Menu.php b/plugins/ScheduledReports/Menu.php
index 64a454dcc8..9d67265759 100644
--- a/plugins/ScheduledReports/Menu.php
+++ b/plugins/ScheduledReports/Menu.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/Model.php b/plugins/ScheduledReports/Model.php
index d1ec94ed9f..72b56b34ce 100644
--- a/plugins/ScheduledReports/Model.php
+++ b/plugins/ScheduledReports/Model.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/ReportEmailGenerator.php b/plugins/ScheduledReports/ReportEmailGenerator.php
index bda895280e..6bdae922c3 100644
--- a/plugins/ScheduledReports/ReportEmailGenerator.php
+++ b/plugins/ScheduledReports/ReportEmailGenerator.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/ReportEmailGenerator/AttachedFileReportEmailGenerator.php b/plugins/ScheduledReports/ReportEmailGenerator/AttachedFileReportEmailGenerator.php
index 604e34e648..55d5afc620 100644
--- a/plugins/ScheduledReports/ReportEmailGenerator/AttachedFileReportEmailGenerator.php
+++ b/plugins/ScheduledReports/ReportEmailGenerator/AttachedFileReportEmailGenerator.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/ReportEmailGenerator/HtmlReportEmailGenerator.php b/plugins/ScheduledReports/ReportEmailGenerator/HtmlReportEmailGenerator.php
index d1885551dc..7125409fbb 100644
--- a/plugins/ScheduledReports/ReportEmailGenerator/HtmlReportEmailGenerator.php
+++ b/plugins/ScheduledReports/ReportEmailGenerator/HtmlReportEmailGenerator.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/ScheduledReports.php b/plugins/ScheduledReports/ScheduledReports.php
index 079e6ac0a2..fd1a559e2a 100644
--- a/plugins/ScheduledReports/ScheduledReports.php
+++ b/plugins/ScheduledReports/ScheduledReports.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/SubscriptionModel.php b/plugins/ScheduledReports/SubscriptionModel.php
index f5937138d5..b548b80c89 100644
--- a/plugins/ScheduledReports/SubscriptionModel.php
+++ b/plugins/ScheduledReports/SubscriptionModel.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/Tasks.php b/plugins/ScheduledReports/Tasks.php
index 44a13e1b57..608b2117ea 100644
--- a/plugins/ScheduledReports/Tasks.php
+++ b/plugins/ScheduledReports/Tasks.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/config/config.php b/plugins/ScheduledReports/config/config.php
index 1c1680a7c4..e8981b52c1 100644
--- a/plugins/ScheduledReports/config/config.php
+++ b/plugins/ScheduledReports/config/config.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/config/tcpdf_config.php b/plugins/ScheduledReports/config/tcpdf_config.php
index 26b33b7da7..97f0b9d286 100644
--- a/plugins/ScheduledReports/config/tcpdf_config.php
+++ b/plugins/ScheduledReports/config/tcpdf_config.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/tests/Integration/ApiTest.php b/plugins/ScheduledReports/tests/Integration/ApiTest.php
index f7914dce34..5d2a5f0832 100644
--- a/plugins/ScheduledReports/tests/Integration/ApiTest.php
+++ b/plugins/ScheduledReports/tests/Integration/ApiTest.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
index cb55ffecd8..5e7d5225cc 100644
--- a/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
+++ b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/AttachedFileReportEmailGeneratorTest.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/tests/Integration/ReportEmailGenerator/HtmlReportEmailGeneratorTest.php b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/HtmlReportEmailGeneratorTest.php
index e0e8c0c9ae..357306d6d3 100644
--- a/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/HtmlReportEmailGeneratorTest.php
+++ b/plugins/ScheduledReports/tests/Integration/ReportEmailGenerator/HtmlReportEmailGeneratorTest.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/tests/Integration/ScheduledReportsTest.php b/plugins/ScheduledReports/tests/Integration/ScheduledReportsTest.php
index 917e6df9bc..ac194e5e36 100644
--- a/plugins/ScheduledReports/tests/Integration/ScheduledReportsTest.php
+++ b/plugins/ScheduledReports/tests/Integration/ScheduledReportsTest.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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/ScheduledReports/tests/Integration/SubscriptionModelTest.php b/plugins/ScheduledReports/tests/Integration/SubscriptionModelTest.php
index f110aef79d..456c174fe9 100644
--- a/plugins/ScheduledReports/tests/Integration/SubscriptionModelTest.php
+++ b/plugins/ScheduledReports/tests/Integration/SubscriptionModelTest.php
@@ -2,7 +2,7 @@
/**
* Piwik - 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
*/