File: D:/web/matomo.circ/plugins/MarketingCampaignsReporting/Reports/GetGroup.php
<?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\MarketingCampaignsReporting\Reports;
use Piwik\Piwik;
use Piwik\Plugins\MarketingCampaignsReporting\Columns\CampaignGroup;
class GetGroup extends Base
{
protected function init()
{
parent::init();
$this->dimension = new CampaignGroup();
$this->name = Piwik::translate('MarketingCampaignsReporting_Groups');
$this->hasGoalMetrics = true;
$this->order = 8;
$this->subcategoryId = 'Referrers_Campaigns';
}
}