| <?php |
|
|
| |
| |
| |
| |
| |
| |
| |
|
|
| namespace Piwik\Plugins\CustomVariables\Reports; |
|
|
| use Piwik\Piwik; |
| use Piwik\Plugin\ViewDataTable; |
| use Piwik\Plugins\CustomVariables\Columns\CustomVariableValue; |
|
|
| class GetCustomVariablesValuesFromNameId extends Base |
| { |
| protected function init() |
| { |
| parent::init(); |
| $this->dimension = new CustomVariableValue(); |
| $this->name = Piwik::translate('CustomVariables_CustomVariables'); |
| $this->documentation = Piwik::translate( |
| 'CustomVariables_CustomVariablesReportDocumentation', |
| array('<br />', '<a href="https://matomo.org/docs/custom-variables/" rel="noreferrer noopener" target="_blank">', '</a>') |
| ); |
| $this->isSubtableReport = true; |
| $this->order = 15; |
| } |
|
|
| public function configureView(ViewDataTable $view) |
| { |
| $view->config->columns_to_display = array('label', 'nb_actions', 'nb_visits'); |
| $view->config->show_goals = true; |
| $view->config->show_search = false; |
| $view->config->show_exclude_low_population = false; |
| $view->config->addTranslation('label', Piwik::translate('CustomVariables_ColumnCustomVariableValue')); |
| $view->requestConfig->filter_sort_column = 'nb_actions'; |
| $view->requestConfig->filter_sort_order = 'desc'; |
| } |
| } |
|
|