Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!
Hallo Welt!
von raredesign | Dez 3, 2019 | Allgemein | 0 Kommentare
Cokiee Shell
Current Path : /var/www/web28/html/wp-content/plugins/matomo/app/core/Tracker/ |
Current File : //var/www/web28/html/wp-content/plugins/matomo/app/core/Tracker/TrackerConfig.php |
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later */ namespace Piwik\Tracker; use Piwik\Config; class TrackerConfig { /** * Update Tracker config * * @param string $name Setting name * @param mixed $value Value */ public static function setConfigValue($name, $value) { $section = self::getConfig(); $section[$name] = $value; Config::getInstance()->Tracker = $section; } public static function getConfigValue($name, $idSite = null) { $config = self::getConfig(); if (!empty($idSite)) { $siteSpecificConfig = self::getSiteSpecificConfig($idSite); $config = array_merge($config, $siteSpecificConfig); } return $config[$name] ?? null; } private static function getConfig() { return Config::getInstance()->Tracker; } private static function getSiteSpecificConfig($idSite) { $key = 'Tracker_' . $idSite; return Config::getInstance()->{$key}; } }
Cokiee Shell Web 1.0, Coded By Razor
Neueste Kommentare