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/API
diff options
context:
space:
mode:
authorJulienMoumne <julien@piwik.org>2012-09-05 01:44:26 +0400
committerJulienMoumne <julien@piwik.org>2012-09-05 01:44:26 +0400
commit7c4c6dde27bac0b452f0f7720c2235dace6f7031 (patch)
treecdfa8a52fa16c5f83c9e22091d754b5f35baa3a7 /core/API
parent61cf7ee40cbe4aa68f4268738d5d7a5e4b0426fb (diff)
refs #3013
* plot multiple metrics using $columns (renamed from $column) * plot row evolutions using optional $labels, will plot top 5 labels when omitted * imageGraphEvolutionUrl added to report metadata (only for reports without constant row count and Referers.getRefererType) * $showMetricTitle renamed to $showLegend refs #3014 * new report parameter 'Show Historical Graphs for the top 5 values' * better looking evolution graph on landcape pages refs #3158 * $label is now optional, will return top N=filter_limit row evolutions sorted with filter_sort_column when omitted * support for $idGoal * integration tests updated constantRowsCount set on * Goals_getDaysToConversion * Goals_getVisitsUntilConversion * Referers_getRefererType merges * r6874 IDEA * in Piwik UI, add a link 'display top 10 row evolutions' using API.getRowEvolution &label=false&filter_sort_column=xyz&filter_limit=10 TODO * fix scheduled report integration tests * review @reviews git-svn-id: http://dev.piwik.org/svn/trunk@6918 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'core/API')
-rw-r--r--core/API/DocumentationGenerator.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/API/DocumentationGenerator.php b/core/API/DocumentationGenerator.php
index 3f010a441d..975cb3736f 100644
--- a/core/API/DocumentationGenerator.php
+++ b/core/API/DocumentationGenerator.php
@@ -191,6 +191,8 @@ class Piwik_API_DocumentationGenerator
$aParameters['label'] = false;
$aParameters['flat'] = false;
$aParameters['include_aggregate_rows'] = false;
+ $aParameters['filter_limit'] = false; //@review without adding this, I can not set filter_limit in $otherRequestParameters integration tests
+ $aParameters['filter_sort_column'] = false; //@review without adding this, I can not set filter_sort_column in $otherRequestParameters integration tests
$aParameters['filter_truncate'] = false;
$aParameters['hideColumns'] = false;
$aParameters['showColumns'] = false;