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/VisitorGenerator/Visit.php')
-rw-r--r--plugins/VisitorGenerator/Visit.php47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/VisitorGenerator/Visit.php b/plugins/VisitorGenerator/Visit.php
deleted file mode 100644
index 4aa41adcd0..0000000000
--- a/plugins/VisitorGenerator/Visit.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-/**
- * Piwik - Open source web analytics
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
- * @version $Id$
- *
- * @category Piwik_Plugin
- * @package Piwik_VisitorGenerator
- */
-
-/**
- * Fake Piwik_Tracker_Visit class that overwrite all the Time related method to be able
- * to setup a given timestamp for the generated visitor and actions.
- *
- * @package Piwik_VisitorGenerator
- */
-class Piwik_VisitorGenerator_Visit extends Piwik_Tracker_Visit
-{
- static protected $timestampToUse;
-
- static public function setTimestampToUse($time)
- {
- self::$timestampToUse = $time;
- }
- protected function getCurrentDate( $format = "Y-m-d")
- {
- return date($format, $this->getCurrentTimestamp() );
- }
-
- protected function getCurrentTimestamp()
- {
- return self::$timestampToUse;
- }
-
- public function generateTimestamp()
- {
- self::$timestampToUse = max(@$this->visitorInfo['visit_last_action_time'],self::$timestampToUse);
- self::$timestampToUse += mt_rand(4,1840);
- }
-
- protected function updateCookie()
- {
- @parent::updateCookie();
- }
-}