![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/anfangola.com/wp-content/plugins/matomo/app/plugins/Resolution/ |
<?php /** * Matomo - free/libre analytics platform * * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later * */ namespace Piwik\Plugins\Resolution; use Piwik\Archive; use Piwik\Piwik; /** * @see plugins/Resolution/functions.php */ require_once PIWIK_INCLUDE_PATH . '/plugins/Resolution/functions.php'; /** * @method static \Piwik\Plugins\Resolution\API getInstance() */ class API extends \Piwik\Plugin\API { protected function getDataTable($name, $idSite, $period, $date, $segment) { Piwik::checkUserHasViewAccess($idSite); $archive = Archive::build($idSite, $period, $date, $segment); $dataTable = $archive->getDataTable($name); $dataTable->queueFilter('ReplaceColumnNames'); $dataTable->queueFilter('ReplaceSummaryRowLabel'); return $dataTable; } public function getResolution($idSite, $period, $date, $segment = false) { $dataTable = $this->getDataTable(\Piwik\Plugins\Resolution\Archiver::RESOLUTION_RECORD_NAME, $idSite, $period, $date, $segment); $dataTable->filter('AddSegmentValue'); return $dataTable; } public function getConfiguration($idSite, $period, $date, $segment = false) { $dataTable = $this->getDataTable(\Piwik\Plugins\Resolution\Archiver::CONFIGURATION_RECORD_NAME, $idSite, $period, $date, $segment); // use GroupBy filter to avoid duplicate rows if old reports are displayed $dataTable->filter('GroupBy', array('label', __NAMESPACE__ . '\\getConfigurationLabel')); return $dataTable; } }