PDF rausgenommen
This commit is contained in:
26
msd2/tracking/piwik/plugins/MultiSites/Reports/GetOne.php
Normal file
26
msd2/tracking/piwik/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;
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user