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: e3e35fd7e0bb605aabca6fb2b52b979ac3478e2c (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
38
<?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
 */
use Piwik\Config;

/**
 * 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 Config
     */
    static public function getInstance()
    {
        return Config::getInstance();
    }
}