Piwik\Plugins\Actions\Reports\GetExitPageTitles::init PHP Method

init() protected method

protected init ( )
    protected function init()
    {
        parent::init();
        $this->dimension = new ExitPageTitle();
        $this->name = Piwik::translate('Actions_ExitPageTitles');
        $this->documentation = Piwik::translate('Actions_ExitPageTitlesReportDocumentation', '<br />') . ' ' . Piwik::translate('General_UsePlusMinusIconsDocumentation');
        $this->subcategoryId = 'Actions_SubmenuPagesExit';
        $this->metrics = array('exit_nb_visits', 'nb_visits');
        $this->processedMetrics = array(new AverageTimeOnPage(), new BounceRate(), new ExitRate(), new AveragePageGenerationTime());
        $this->order = 7;
        $this->actionToLoadSubTables = $this->action;
    }