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:
authorMatthieu Aubry <matt@piwik.org>2015-04-01 01:20:00 +0300
committerMatthieu Aubry <matt@piwik.org>2015-04-01 01:20:00 +0300
commit594f336a3947d2c1c282cc8d6290e93f357d6756 (patch)
treee2c557a1bb9f74ae78ed5a50ef1f9025d08a7d0c /plugins/Resolution
parent0cab2810b26389f66df010338eb9d22f52deb1fb (diff)
parenteb00a7403766550eae694db8d593354c6785b2bb (diff)
Merge pull request #7292 from piwik/reorganize_tech_reports
Reorganized technical reports
Diffstat (limited to 'plugins/Resolution')
-rw-r--r--plugins/Resolution/Reports/GetConfiguration.php6
-rw-r--r--plugins/Resolution/Reports/GetResolution.php6
2 files changed, 12 insertions, 0 deletions
diff --git a/plugins/Resolution/Reports/GetConfiguration.php b/plugins/Resolution/Reports/GetConfiguration.php
index 024efa844e..6b20f4ac96 100644
--- a/plugins/Resolution/Reports/GetConfiguration.php
+++ b/plugins/Resolution/Reports/GetConfiguration.php
@@ -33,4 +33,10 @@ class GetConfiguration extends Base
$view->requestConfig->filter_limit = 3;
}
+ public function getRelatedReports()
+ {
+ return array(
+ new GetResolution()
+ );
+ }
}
diff --git a/plugins/Resolution/Reports/GetResolution.php b/plugins/Resolution/Reports/GetResolution.php
index fbb78eb878..5e42df64d9 100644
--- a/plugins/Resolution/Reports/GetResolution.php
+++ b/plugins/Resolution/Reports/GetResolution.php
@@ -31,4 +31,10 @@ class GetResolution extends Base
$view->config->addTranslation('label', $this->dimension->getName());
}
+ public function getRelatedReports()
+ {
+ return array(
+ new GetConfiguration()
+ );
+ }
}