Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserSettings/Reports/GetBrowserVersion.php')
-rw-r--r--plugins/UserSettings/Reports/GetBrowserVersion.php47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/UserSettings/Reports/GetBrowserVersion.php b/plugins/UserSettings/Reports/GetBrowserVersion.php
deleted file mode 100644
index aa1c39f042..0000000000
--- a/plugins/UserSettings/Reports/GetBrowserVersion.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?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\UserSettings\Reports;
-
-use Piwik\Piwik;
-use Piwik\Plugin\ViewDataTable;
-use Piwik\Plugins\CoreVisualizations\Visualizations\Graph;
-use Piwik\Plugins\UserSettings\Columns\BrowserVersion;
-
-class GetBrowserVersion extends Base
-{
- protected function init()
- {
- parent::init();
- $this->dimension = new BrowserVersion();
- $this->name = Piwik::translate('UserSettings_WidgetBrowserVersion');
- $this->documentation = ''; // TODO
- $this->order = 2;
- $this->widgetTitle = 'UserSettings_WidgetBrowserVersion';
- }
-
- public function configureView(ViewDataTable $view)
- {
- $this->getBasicUserSettingsDisplayProperties($view);
-
- $view->config->title = Piwik::translate('UserSettings_ColumnBrowserVersion');
- $view->config->addTranslation('label', $this->dimension->getName());
-
- if ($view->isViewDataTableId(Graph::ID)) {
- $view->config->max_graph_elements = 7;
- }
- }
-
- public function getRelatedReports()
- {
- return array(
- new GetBrowser()
- );
- }
-
-}