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/DevicesDetection/Visitor.php')
-rw-r--r--plugins/DevicesDetection/Visitor.php101
1 files changed, 0 insertions, 101 deletions
diff --git a/plugins/DevicesDetection/Visitor.php b/plugins/DevicesDetection/Visitor.php
deleted file mode 100644
index af05191995..0000000000
--- a/plugins/DevicesDetection/Visitor.php
+++ /dev/null
@@ -1,101 +0,0 @@
-<?php
-/**
- * Piwik - free/libre analytics platform
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
- *
- */
-namespace Piwik\Plugins\DevicesDetection;
-
-require_once PIWIK_INCLUDE_PATH . '/plugins/DevicesDetection/functions.php';
-
-class Visitor
-{
- private $details = array();
-
- public function __construct($details)
- {
- $this->details = $details;
- }
-
- public function getDeviceType()
- {
- return getDeviceTypeLabel($this->details['config_device_type']);
- }
-
- public function getDeviceTypeIcon()
- {
- return getDeviceTypeLogo($this->details['config_device_type']);
- }
-
- public function getDeviceBrand()
- {
- return getDeviceBrandLabel($this->details['config_device_brand']);
- }
-
- public function getDeviceModel()
- {
- return $this->details['config_device_model'];
- }
-
- public function getOperatingSystemCode()
- {
- return $this->details['config_os'];
- }
-
- public function getOperatingSystem()
- {
- return getOsFullName($this->details['config_os'] . ";" . $this->details['config_os_version']);
- }
-
- public function getOperatingSystemName()
- {
- return getOsFullName($this->details['config_os']);
- }
-
- public function getOperatingSystemVersion()
- {
- return $this->details['config_os_version'];
- }
-
- public function getOperatingSystemIcon()
- {
- return getOsLogo($this->details['config_os']);
- }
-
- public function getBrowserEngineDescription()
- {
- return getBrowserEngineName($this->getBrowserEngine());
- }
-
- public function getBrowserEngine()
- {
- return $this->details['config_browser_engine'];
- }
-
- public function getBrowserCode()
- {
- return $this->details['config_browser_name'];
- }
-
- public function getBrowserVersion()
- {
- return $this->details['config_browser_version'];
- }
-
- public function getBrowser()
- {
- return getBrowserNameWithVersion($this->details['config_browser_name'] . ";" . $this->details['config_browser_version']);
- }
-
- public function getBrowserName()
- {
- return getBrowserName($this->details['config_browser_name'] . ";" . $this->details['config_browser_version']);
- }
-
- public function getBrowserIcon()
- {
- return getBrowserLogo($this->details['config_browser_name'] . ";" . $this->details['config_browser_version']);
- }
-} \ No newline at end of file