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:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-30 23:15:09 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-07-30 23:15:09 +0400
commitedf2c04f41445fb6f3f5658e887b53a8a49b4e13 (patch)
treefdb13ce6e0baea2e7badd7a3a6dca5ac19699368 /plugins/DevicesDetection/Controller.php
parent12c74e64281ddab9303eb389fcb76f0518651a55 (diff)
Refs #4040, #4041, added ability to access view properties directly, started documenting view properties and modified ExampleUI plugin to set view properties directly.
Diffstat (limited to 'plugins/DevicesDetection/Controller.php')
-rw-r--r--plugins/DevicesDetection/Controller.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/DevicesDetection/Controller.php b/plugins/DevicesDetection/Controller.php
index 94584e60b9..fffae636b8 100644
--- a/plugins/DevicesDetection/Controller.php
+++ b/plugins/DevicesDetection/Controller.php
@@ -25,37 +25,37 @@ class Piwik_DevicesDetection_Controller extends Piwik_Controller
public function getType($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getBrand($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getModel($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getOsFamilies($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getOsVersions($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getBrowserFamilies($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
public function getBrowserVersions($fetch = false)
{
- return Piwik_ViewDataTable::render($this->pluginName, __FUNCTION__, $fetch);
+ return Piwik_ViewDataTable::renderReport($this->pluginName, __FUNCTION__, $fetch);
}
/**