| <?php |
|
|
| |
| |
| |
| |
| |
| |
|
|
| namespace Piwik\Plugins\DevicesDetection\Reports; |
|
|
| use Piwik\Piwik; |
| use Piwik\Plugin\ViewDataTable; |
| use Piwik\Plugins\DevicesDetection\Columns\BrowserName; |
| use Piwik\Plugin\ReportsProvider; |
|
|
| class GetBrowsers extends Base |
| { |
| protected function init() |
| { |
| parent::init(); |
| $this->dimension = new BrowserName(); |
| $this->name = Piwik::translate('DevicesDetection_Browsers'); |
| $this->documentation = Piwik::translate('DevicesDetection_WidgetBrowsersDocumentation'); |
| $this->order = 5; |
| $this->subcategoryId = 'DevicesDetection_Software'; |
| $this->hasGoalMetrics = true; |
| } |
|
|
| public function configureView(ViewDataTable $view) |
| { |
| $view->config->show_flatten_table = false; |
| $view->config->show_flatten_table_export = false; |
| $view->config->title = $this->name; |
| $view->config->show_search = true; |
| $view->config->show_exclude_low_population = false; |
| } |
|
|
| public function getRelatedReports() |
| { |
| return array( |
| ReportsProvider::factory('DevicesDetection', 'getBrowserVersions'), |
| ); |
| } |
| } |
|
|