Piwik\Plugins\Referrers\Reports\Base::init PHP Method

init() protected method

protected init ( )
    protected function init()
    {
        $this->categoryId = 'Referrers_Referrers';
    }

Usage Example

 protected function init()
 {
     parent::init();
     $this->dimension = new Keyword();
     $this->name = Piwik::translate('Referrers_Campaigns');
     $this->documentation = Piwik::translate('Referrers_CampaignsReportDocumentation', array('<br />', '<a href="http://piwik.org/docs/tracking-campaigns/" rel="noreferrer"  target="_blank">', '</a>'));
     $this->isSubtableReport = true;
     $this->order = 10;
 }
All Usage Examples Of Piwik\Plugins\Referrers\Reports\Base::init
Base