Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Config.php « Tracker « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90fe0e1f458c895114ad2acf9f384be3481bd2b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */

/**
 * Backward compatibility layer
 * DO NOT USE
 *
 * Use this notation to fetch a config file value:
 * 	Piwik_Config::getInstance()->General['enable_browser_archiving_triggering']
 *
 * @todo remove this in 2.0
 * @since 1.7
 * @deprecated 1.7
 *
 * @package Piwik
 * @subpackage Piwik_Tracker_Config
 */
class Piwik_Tracker_Config
{
	/**
	 * Returns the singleton Piwik_Config
	 *
	 * @return Piwik_Config
	 */
	static public function getInstance()
	{
		return Piwik_Config::getInstance();
	}
}