PDF rausgenommen
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
<?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\Actions\Reports;
|
||||
|
||||
use Piwik\Piwik;
|
||||
use Piwik\Plugin\ViewDataTable;
|
||||
use Piwik\Plugins\Actions\Columns\DestinationPage;
|
||||
use Piwik\Plugin\ReportsProvider;
|
||||
|
||||
class GetPageUrlsFollowingSiteSearch extends GetPageTitlesFollowingSiteSearch
|
||||
{
|
||||
protected function init()
|
||||
{
|
||||
parent::init();
|
||||
$this->dimension = new DestinationPage();
|
||||
$this->name = Piwik::translate('Actions_WidgetPageUrlsFollowingSearch');
|
||||
$this->documentation = Piwik::translate('Actions_SiteSearchFollowingPagesDoc') . '<br/>' . Piwik::translate('General_UsePlusMinusIconsDocumentation');
|
||||
$this->order = 16;
|
||||
|
||||
$this->subcategoryId = 'Actions_SubmenuSitesearch';
|
||||
}
|
||||
|
||||
public function configureView(ViewDataTable $view)
|
||||
{
|
||||
$title = Piwik::translate('Actions_WidgetPageTitlesFollowingSearch');
|
||||
|
||||
$this->configureViewForUrlAndTitle($view, $title);
|
||||
}
|
||||
|
||||
public function getRelatedReports()
|
||||
{
|
||||
return array(
|
||||
ReportsProvider::factory('Actions', 'getPageTitlesFollowingSiteSearch'),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user