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:
authorsgiehl <stefan@piwik.org>2013-08-04 00:59:20 +0400
committersgiehl <stefan@piwik.org>2013-08-04 01:01:40 +0400
commit86850ebd9c5a8ab41c367d0c8084ce87bccb87ef (patch)
tree6392e3f69819446fdb11adc0335e48d187d7247c /plugins/Actions/API.php
parentda8ed5d2e15ff6cd9b9f913cf89dfd61ef7e290f (diff)
doc blocks
Diffstat (limited to 'plugins/Actions/API.php')
-rw-r--r--plugins/Actions/API.php14
1 files changed, 12 insertions, 2 deletions
diff --git a/plugins/Actions/API.php b/plugins/Actions/API.php
index 263e3e4a6b..768389f8c0 100644
--- a/plugins/Actions/API.php
+++ b/plugins/Actions/API.php
@@ -288,7 +288,12 @@ class Piwik_Actions_API
return $dataTable;
}
- //Visitors can search, and then click "next" to view more results. This is the average number of search results pages viewed for this keyword.
+ /**
+ * Visitors can search, and then click "next" to view more results. This is the average number of search results pages viewed for this keyword.
+ *
+ * @param DataTable|DataTable\Simple|DataTable\Map $dataTable
+ * @param string $columnToRead
+ */
protected function addPagesPerSearchColumn($dataTable, $columnToRead = 'nb_hits')
{
$dataTable->filter('ColumnCallbackAddColumnQuotient', array('nb_pages_per_search', $columnToRead, 'nb_visits', $precision = 1));
@@ -463,6 +468,8 @@ class Piwik_Actions_API
/**
* Common filters for Page URLs and Page Titles
+ *
+ * @param DataTable|DataTable\Simple|DataTable\Map $dataTable
*/
protected function filterPageDatatable($dataTable)
{
@@ -507,7 +514,10 @@ class Piwik_Actions_API
}
/**
- * Common filters for all Actions API getters
+ * Common filters for all Actions API
+ *
+ * @param DataTable|DataTable\Simple|DataTable\Map $dataTable
+ * @param bool $expanded
*/
protected function filterActionsDataTable($dataTable, $expanded = false)
{