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
diff options
context:
space:
mode:
authordiosmosis <benakamoorthi@fastmail.fm>2014-05-29 23:31:42 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-05-30 22:54:44 +0400
commita01508f3d5c2506dde54f8c001baee70bdea58cb (patch)
tree372b0a8182668b21ce634fb4da1712d75049d508 /core
parent1a7648dd023e4ca9db487e96d3dcca49ebca82bf (diff)
Mark some methods in Visualization class to be exposed in developer docs.
Diffstat (limited to 'core')
-rw-r--r--core/Plugin/Visualization.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/Plugin/Visualization.php b/core/Plugin/Visualization.php
index 387858f518..fc4002948d 100644
--- a/core/Plugin/Visualization.php
+++ b/core/Plugin/Visualization.php
@@ -505,6 +505,8 @@ class Visualization extends ViewDataTable
*
* Use this method to change the request parameters that is sent to the API when requesting
* data.
+ *
+ * @api
*/
public function beforeLoadDataTable()
{
@@ -515,6 +517,8 @@ class Visualization extends ViewDataTable
*
* Use this method if you need access to the entire dataset (since generic filters will
* limit and truncate reports).
+ *
+ * @api
*/
public function beforeGenericFiltersAreAppliedToLoadedDataTable()
{
@@ -522,6 +526,8 @@ class Visualization extends ViewDataTable
/**
* Hook that is executed after generic filters are applied.
+ *
+ * @api
*/
public function afterGenericFiltersAreAppliedToLoadedDataTable()
{
@@ -530,6 +536,8 @@ class Visualization extends ViewDataTable
/**
* Hook that is executed after the report data is loaded and after all filters have been applied.
* Use this method to format the report data before the view is rendered.
+ *
+ * @api
*/
public function afterAllFiltersAreApplied()
{
@@ -538,6 +546,8 @@ class Visualization extends ViewDataTable
/**
* Hook that is executed directly before rendering. Use this hook to force display properties to
* be a certain value, despite changes from plugins and query parameters.
+ *
+ * @api
*/
public function beforeRender()
{