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:
Diffstat (limited to 'plugins/UserSettings/Controller.php')
-rw-r--r--plugins/UserSettings/Controller.php46
1 files changed, 23 insertions, 23 deletions
diff --git a/plugins/UserSettings/Controller.php b/plugins/UserSettings/Controller.php
index d0c7c42603..78b0836520 100644
--- a/plugins/UserSettings/Controller.php
+++ b/plugins/UserSettings/Controller.php
@@ -32,61 +32,61 @@ class Controller extends \Piwik\Plugin\Controller
$view->dataTableMobileVsDesktop = $this->getMobileVsDesktop(true);
$view->dataTableBrowserLanguage = $this->getLanguage(true);
- echo $view->render();
+ return $view->render();
}
- public function getResolution($fetch = false)
+ public function getResolution()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getConfiguration($fetch = false)
+ public function getConfiguration()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getOS($fetch = false)
+ public function getOS()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getOSFamily($fetch = false)
+ public function getOSFamily()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getMobileVsDesktop($fetch = false)
+ public function getMobileVsDesktop()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getBrowserVersion($fetch = false)
+ public function getBrowserVersion()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getBrowser($fetch = false)
+ public function getBrowser()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getBrowserType($fetch = false)
+ public function getBrowserType()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getWideScreen($fetch = false)
+ public function getWideScreen()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getPlugin($fetch = false)
+ public function getPlugin()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
- public function getLanguage($fetch = false)
+ public function getLanguage()
{
- return $this->renderReport(__FUNCTION__, $fetch);
+ return $this->renderReport(__FUNCTION__);
}
}