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:
authorThomas Steur <thomas.steur@gmail.com>2016-03-10 00:55:45 +0300
committerThomas Steur <thomas.steur@gmail.com>2016-04-11 05:11:33 +0300
commitb52ae4e7e488e0474d67c54578e1d6c1aa066bff (patch)
treef94b02f774cbc24faaa18f29ee1e19fef8b338af /plugins/Resolution
parent6ba622a68a26792af8cc22131f488f7ff5189d2c (diff)
refs #7983 let plugins add or remove fields to websites and better settings api
Diffstat (limited to 'plugins/Resolution')
-rw-r--r--plugins/Resolution/Reports/GetConfiguration.php4
-rw-r--r--plugins/Resolution/Reports/GetResolution.php4
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Resolution/Reports/GetConfiguration.php b/plugins/Resolution/Reports/GetConfiguration.php
index 600f07edd9..8e42b28a24 100644
--- a/plugins/Resolution/Reports/GetConfiguration.php
+++ b/plugins/Resolution/Reports/GetConfiguration.php
@@ -11,7 +11,7 @@ namespace Piwik\Plugins\Resolution\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugins\Resolution\Columns\Configuration;
-use Piwik\Plugin\Reports;
+use Piwik\Plugin\ReportsProvider;
class GetConfiguration extends Base
{
@@ -38,7 +38,7 @@ class GetConfiguration extends Base
public function getRelatedReports()
{
return array(
- Reports::factory('Resolution', 'getResolution'),
+ ReportsProvider::factory('Resolution', 'getResolution'),
);
}
}
diff --git a/plugins/Resolution/Reports/GetResolution.php b/plugins/Resolution/Reports/GetResolution.php
index 3b27236a86..2e18ec95aa 100644
--- a/plugins/Resolution/Reports/GetResolution.php
+++ b/plugins/Resolution/Reports/GetResolution.php
@@ -11,7 +11,7 @@ namespace Piwik\Plugins\Resolution\Reports;
use Piwik\Piwik;
use Piwik\Plugin\ViewDataTable;
use Piwik\Plugins\Resolution\Columns\Resolution;
-use Piwik\Plugin\Reports;
+use Piwik\Plugin\ReportsProvider;
class GetResolution extends Base
{
@@ -36,7 +36,7 @@ class GetResolution extends Base
public function getRelatedReports()
{
return array(
- Reports::factory('Resolution', 'getConfiguration'),
+ ReportsProvider::factory('Resolution', 'getConfiguration'),
);
}
}