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:
authordiosmosis <benaka@piwik.pro>2015-08-06 15:41:26 +0300
committerdiosmosis <benaka@piwik.pro>2015-08-07 17:15:43 +0300
commit161ec8593a9f52be9d758569f86ece29f7cca4b2 (patch)
treebee439b8a8c73046ad2b6f7c7c23a109cf59e762 /core/Tracker/Visit
parent2f91d3c83a834b0e451d3e58fa246ef0a87740fb (diff)
Moving request metadata from VisitProperties to Tracker\Request class.
Diffstat (limited to 'core/Tracker/Visit')
-rw-r--r--core/Tracker/Visit/VisitProperties.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/core/Tracker/Visit/VisitProperties.php b/core/Tracker/Visit/VisitProperties.php
index 30b3168f4c..567d9bd0f6 100644
--- a/core/Tracker/Visit/VisitProperties.php
+++ b/core/Tracker/Visit/VisitProperties.php
@@ -22,39 +22,6 @@ class VisitProperties
private $visitInfo = array();
/**
- * Stores plugin specific tracking request metadata. RequestProcessors can store
- * whatever they want in this array, and other RequestProcessors can modify these
- * values to change tracker behavior.
- *
- * @var string[][]
- */
- private $requestMetadata = array();
-
- /**
- * Set a request metadata value.
- *
- * @param string $pluginName eg, `'Actions'`, `'Goals'`, `'YourPlugin'`
- * @param string $key
- * @param mixed $value
- */
- public function setRequestMetadata($pluginName, $key, $value)
- {
- $this->requestMetadata[$pluginName][$key] = $value;
- }
-
- /**
- * Get a request metadata value. Returns `null` if none exists.
- *
- * @param string $pluginName eg, `'Actions'`, `'Goals'`, `'YourPlugin'`
- * @param string $key
- * @return mixed
- */
- public function getRequestMetadata($pluginName, $key)
- {
- return @$this->requestMetadata[$pluginName][$key];
- }
-
- /**
* Returns a visit property, or `null` if none is set.
*
* @param string $name The property name.