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/Provider/VisitorDetails.php')
-rw-r--r--plugins/Provider/VisitorDetails.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/plugins/Provider/VisitorDetails.php b/plugins/Provider/VisitorDetails.php
new file mode 100644
index 0000000000..d0f8f146b7
--- /dev/null
+++ b/plugins/Provider/VisitorDetails.php
@@ -0,0 +1,57 @@
+<?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\Provider;
+
+use Piwik\Piwik;
+use Piwik\Plugins\Live\VisitorDetailsAbstract;
+use Piwik\View;
+
+/**
+ * @see plugins/Provider/functions.php
+ */
+require_once PIWIK_INCLUDE_PATH . '/plugins/Provider/functions.php';
+
+class VisitorDetails extends VisitorDetailsAbstract
+{
+ public function extendVisitorDetails(&$visitor)
+ {
+ $visitor['provider'] = $this->details['location_provider'];
+ $visitor['providerName'] = $this->getProviderName();
+ $visitor['providerUrl'] = $this->getProviderUrl();
+ }
+
+ public function renderVisitorDetails($visitorDetails)
+ {
+ if (empty($visitorDetails['provider'])) {
+ return [];
+ }
+
+ $view = new View('@Provider/_visitorDetails.twig');
+ $view->visitInfo = $visitorDetails;
+ return [[ 20, $view->render() ]];
+ }
+
+ protected function getProvider()
+ {
+ if (isset($this->details['location_provider'])) {
+ return $this->details['location_provider'];
+ }
+ return Piwik::translate('General_Unknown');
+ }
+
+ protected function getProviderName()
+ {
+ return getPrettyProviderName($this->getProvider());
+ }
+
+ protected function getProviderUrl()
+ {
+ return getHostnameUrl(@$this->details['location_provider']);
+ }
+} \ No newline at end of file