
<center><h2><strong>Ubuntu</strong></h2>
­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­­
<!DOCTYPE html>
<html>
<?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\Plugins\Resolution;

use Exception;
use Piwik\Archive;
use Piwik\Container\StaticContainer;
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)
    {
        $translator = StaticContainer::get('Piwik\\Translation\\Translator');
        if (\Piwik\Plugins\Resolution\Resolution::isScreenResolutionDetectionDisabledByCompliancePolicy($idSite)) {
            throw new Exception($translator->translate('Resolution_ScreenResolutionReportDisabledByCompliancePolicy'));
        }
        $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;
    }
}
