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:
authorsgiehl <stefan@piwik.org>2013-07-12 19:24:28 +0400
committersgiehl <stefan@piwik.org>2013-07-12 19:24:28 +0400
commit91ea06716a7ba1250099686c2cdb824da526de56 (patch)
treede107269d0562a895429cbdd0f571c9fc7296216 /core
parent73b20945c89c2c9c15873d4a853dc6c4542134f5 (diff)
fixed/added some missing doc blocks
Diffstat (limited to 'core')
-rw-r--r--core/ViewDataTable.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index 3c6835960b..14208e63ed 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -210,6 +210,7 @@ abstract class Piwik_ViewDataTable
* If force is set to true, a ViewDataTable of the $defaultType will be returned in all cases.
*
* @param string $defaultType Any of these: table, cloud, graphPie, graphVerticalBar, graphEvolution, sparkline, generateDataChart*
+ * @param string|bool $action
* @return Piwik_ViewDataTable
*/
static public function factory($defaultType = null, $action = false)
@@ -355,6 +356,7 @@ abstract class Piwik_ViewDataTable
* @param string $currentControllerAction eg. 'getKeywords'
* @param string $apiMethodToRequestDataTable eg. 'Referers.getKeywords'
* @param string $controllerActionCalledWhenRequestSubTable eg. 'getSearchEnginesFromKeywordId'
+ * @param array $defaultProperties
*/
public function init($currentControllerName,
$currentControllerAction,
@@ -476,10 +478,11 @@ abstract class Piwik_ViewDataTable
/**
* Returns the defaut view properties for a report, if any.
- *
+ *
* Plugins can associate callbacks with the ViewDataTable.getReportDisplayProperties
* event to set the default properties of reports.
- *
+ *
+ * @param string $apiAction
* @return array
*/
private static function getDefaultPropertiesForReport($apiAction)