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
path: root/core/View
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2013-12-06 01:49:56 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2013-12-06 01:49:56 +0400
commit777ca60440aa67e436fb15bb0fc1bd445d32ce78 (patch)
treee3557a53472016259873109e2932f99b764be42c /core/View
parentb6c2cf90277b6abeabe13910b04ef286c66a4b67 (diff)
Fixes #4199, revising event docs and closing ticket.
Diffstat (limited to 'core/View')
-rw-r--r--core/View/ReportsByDimension.php11
1 files changed, 7 insertions, 4 deletions
diff --git a/core/View/ReportsByDimension.php b/core/View/ReportsByDimension.php
index 24f2110475..c3a298f588 100644
--- a/core/View/ReportsByDimension.php
+++ b/core/View/ReportsByDimension.php
@@ -91,9 +91,12 @@ class ReportsByDimension extends View
public function render()
{
/**
- * Use this hook to configure the "Report by dimension" UI controller. This controller is displayed for example
- * in the Referrers>Overview and the Goals>Overview report. It displays a list of repotrs on the left, and when click
- * loads the report on the right column. This hook can be used to filter this list of report. @see ReportsByDimension class for more info.
+ * Triggered before rendering {@link ReportsByDimension} views.
+ *
+ * Plugins can use this event to configure {@link ReportsByDimension} instances by
+ * adding or removing reports to display.
+ *
+ * @param ReportsByDimension $this The view instance.
*/
Piwik::postEvent('View.ReportsByDimension.render', array($this));
@@ -125,4 +128,4 @@ class ReportsByDimension extends View
return parent::render();
}
-}
+} \ No newline at end of file