قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-21 22:47:43 +00:00

* Disable autosanitize for MultiSites API * Add proper type hints accross MultiSites plugin * cs/ws * Replace Common::getRequestVar with Request class methods * some more type hints * simplify table filter * updates expected UI test file * clean up more code & bring code to phpstan lvl 5 * Add tooltips to table header * small code improvements
38 خطوط
1.1 KiB
PHP
38 خطوط
1.1 KiB
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\Plugins\MultiSites\Reports;
|
|
|
|
use Piwik\Piwik;
|
|
use Piwik\Plugins\MultiSites\API;
|
|
|
|
abstract class Base extends \Piwik\Plugin\Report
|
|
{
|
|
protected function init()
|
|
{
|
|
$this->categoryId = 'General_MultiSitesSummary';
|
|
|
|
$allMetricsInfo = API::getApiMetrics($enhanced = true);
|
|
|
|
$metadataMetrics = [];
|
|
$processedMetricsMetadata = [];
|
|
|
|
foreach ($allMetricsInfo as $metricName => $metricSettings) {
|
|
$metadataMetrics[$metricName] =
|
|
Piwik::translate($metricSettings[API::METRIC_TRANSLATION_KEY]);
|
|
|
|
$processedMetricsMetadata[$metricSettings[API::METRIC_EVOLUTION_COL_NAME_KEY]] =
|
|
Piwik::translate($metricSettings[API::METRIC_TRANSLATION_KEY]) . " " . Piwik::translate('MultiSites_Evolution');
|
|
}
|
|
|
|
$this->metrics = array_keys($metadataMetrics);
|
|
$this->processedMetrics = array_keys($processedMetricsMetadata);
|
|
}
|
|
}
|