update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
|
|
@ -0,0 +1,86 @@
|
|||
<?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\Plugins\Actions\Columns\Metrics\AveragePageGenerationTime;
|
||||
use Piwik\Plugins\Actions\Columns\Metrics\AverageTimeOnPage;
|
||||
use Piwik\Plugins\Actions\Columns\Metrics\BounceRate;
|
||||
use Piwik\Plugins\Actions\Columns\Metrics\ExitRate;
|
||||
|
||||
class GetPageTitlesFollowingSiteSearch extends SiteSearchBase
|
||||
{
|
||||
protected function init()
|
||||
{
|
||||
parent::init();
|
||||
$this->dimension = new DestinationPage();
|
||||
$this->name = Piwik::translate('Actions_WidgetPageTitlesFollowingSearch');
|
||||
$this->documentation = Piwik::translate('Actions_SiteSearchFollowingPagesDoc') . '<br/>' . Piwik::translate('General_UsePlusMinusIconsDocumentation');
|
||||
$this->metrics = array('nb_hits_following_search', 'nb_hits');
|
||||
$this->processedMetrics = array(
|
||||
new AverageTimeOnPage(),
|
||||
new BounceRate(),
|
||||
new ExitRate(),
|
||||
new AveragePageGenerationTime()
|
||||
);
|
||||
$this->order = 19;
|
||||
$this->widgetTitle = 'Actions_WidgetPageTitlesFollowingSearch';
|
||||
}
|
||||
|
||||
public function configureView(ViewDataTable $view)
|
||||
{
|
||||
$title = Piwik::translate('Actions_WidgetPageUrlsFollowingSearch');
|
||||
|
||||
$this->configureViewForUrlAndTitle($view, $title);
|
||||
}
|
||||
|
||||
public function getMetrics()
|
||||
{
|
||||
return array(
|
||||
'nb_hits_following_search' => Piwik::translate('General_ColumnViewedAfterSearch'),
|
||||
'nb_hits' => Piwik::translate('General_ColumnTotalPageviews'),
|
||||
);
|
||||
}
|
||||
|
||||
public function getProcessedMetrics()
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
protected function getMetricsDocumentation()
|
||||
{
|
||||
return array(
|
||||
'nb_hits_following_search' => Piwik::translate('General_ColumnViewedAfterSearchDocumentation'),
|
||||
'nb_hits' => Piwik::translate('General_ColumnPageviewsDocumentation'),
|
||||
);
|
||||
}
|
||||
|
||||
protected function configureViewForUrlAndTitle(ViewDataTable $view, $title)
|
||||
{
|
||||
$view->config->addTranslations(array('label' => $this->dimension->getName()));
|
||||
|
||||
$view->config->title = $title;
|
||||
$view->config->columns_to_display = array('label', 'nb_hits_following_search', 'nb_hits');
|
||||
$view->config->show_exclude_low_population = false;
|
||||
$view->requestConfig->filter_sort_column = 'nb_hits_following_search';
|
||||
$view->requestConfig->filter_sort_order = 'desc';
|
||||
|
||||
$this->addExcludeLowPopDisplayProperties($view);
|
||||
$this->addBaseDisplayProperties($view);
|
||||
}
|
||||
|
||||
public function getRelatedReports()
|
||||
{
|
||||
return array(
|
||||
self::factory('Actions', 'getPageUrlsFollowingSiteSearch'),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue