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/Visitor.php')
-rw-r--r--plugins/UserSettings/Visitor.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/plugins/UserSettings/Visitor.php b/plugins/UserSettings/Visitor.php
index 6d114b1124..03e2bd958a 100644
--- a/plugins/UserSettings/Visitor.php
+++ b/plugins/UserSettings/Visitor.php
@@ -63,46 +63,6 @@ class Visitor
return null;
}
- function getOperatingSystemCode()
- {
- return $this->details['config_os'];
- }
-
- function getOperatingSystem()
- {
- return getOSLabel($this->details['config_os']);
- }
-
- function getOperatingSystemShortName()
- {
- return getOSShortLabel($this->details['config_os']);
- }
-
- function getOperatingSystemIcon()
- {
- return getOSLogo($this->details['config_os']);
- }
-
- function getBrowserCode()
- {
- return $this->details['config_browser_name'];
- }
-
- function getBrowserVersion()
- {
- return $this->details['config_browser_version'];
- }
-
- function getBrowser()
- {
- return getBrowserLabel($this->details['config_browser_name'] . ";" . $this->details['config_browser_version']);
- }
-
- function getBrowserIcon()
- {
- return getBrowsersLogo($this->details['config_browser_name'] . ";" . $this->details['config_browser_version']);
- }
-
function getScreenType()
{
if (!array_key_exists('config_resolution', $this->details)) {