update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
37
www/analytics/plugins/MultiSites/Reports/Base.php
Normal file
37
www/analytics/plugins/MultiSites/Reports/Base.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://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->category = 'General_MultiSitesSummary';
|
||||
|
||||
$allMetricsInfo = API::getApiMetrics($enhanced = true);
|
||||
|
||||
$metadataMetrics = array();
|
||||
$processedMetricsMetadata = array();
|
||||
|
||||
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);
|
||||
}
|
||||
|
||||
}
|
||||
25
www/analytics/plugins/MultiSites/Reports/GetAll.php
Normal file
25
www/analytics/plugins/MultiSites/Reports/GetAll.php
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\MultiSites\Reports;
|
||||
|
||||
use Piwik\Piwik;
|
||||
use Piwik\Plugins\MultiSites\Columns\Website;
|
||||
|
||||
class GetAll extends Base
|
||||
{
|
||||
protected function init()
|
||||
{
|
||||
parent::init();
|
||||
$this->dimension = new Website();
|
||||
$this->name = Piwik::translate('General_AllWebsitesDashboard');
|
||||
$this->documentation = ''; // TODO
|
||||
$this->constantRowsCount = false;
|
||||
$this->order = 4;
|
||||
}
|
||||
}
|
||||
26
www/analytics/plugins/MultiSites/Reports/GetOne.php
Normal file
26
www/analytics/plugins/MultiSites/Reports/GetOne.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\MultiSites\Reports;
|
||||
|
||||
use Piwik\Piwik;
|
||||
use Piwik\Plugins\MultiSites\Columns\Website;
|
||||
|
||||
class GetOne extends Base
|
||||
{
|
||||
protected function init()
|
||||
{
|
||||
parent::init();
|
||||
$this->dimension = new Website();
|
||||
$this->name = Piwik::translate('General_SingleWebsitesDashboard');
|
||||
$this->documentation = ''; // TODO
|
||||
$this->constantRowsCount = false;
|
||||
$this->order = 5;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue