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:
authorsgiehl <stefan@piwik.org>2015-01-06 13:13:05 +0300
committersgiehl <stefan@piwik.org>2015-01-06 13:13:05 +0300
commit3be405125f59d95d61a5eb2727dc86addc7db440 (patch)
treec89fff5fbd76deb5f7d02232ce497f321b7b35af /plugins/DevicesDetection
parent2a73a7fdd927b7a7e829db2fe37498db3b3dac35 (diff)
fixes #6490 - enabled search field for some reports
Diffstat (limited to 'plugins/DevicesDetection')
-rw-r--r--plugins/DevicesDetection/Reports/GetBrand.php2
-rw-r--r--plugins/DevicesDetection/Reports/GetBrowserVersions.php2
-rw-r--r--plugins/DevicesDetection/Reports/GetBrowsers.php2
-rw-r--r--plugins/DevicesDetection/Reports/GetModel.php2
-rw-r--r--plugins/DevicesDetection/Reports/GetOsVersions.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/plugins/DevicesDetection/Reports/GetBrand.php b/plugins/DevicesDetection/Reports/GetBrand.php
index b76eb35c7c..070b2d8918 100644
--- a/plugins/DevicesDetection/Reports/GetBrand.php
+++ b/plugins/DevicesDetection/Reports/GetBrand.php
@@ -26,7 +26,7 @@ class GetBrand extends Base
public function configureView(ViewDataTable $view)
{
- $view->config->show_search = false;
+ $view->config->show_search = true;
$view->config->show_exclude_low_population = false;
$view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelBrands"));
}
diff --git a/plugins/DevicesDetection/Reports/GetBrowserVersions.php b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
index 0e26223d30..77f1541785 100644
--- a/plugins/DevicesDetection/Reports/GetBrowserVersions.php
+++ b/plugins/DevicesDetection/Reports/GetBrowserVersions.php
@@ -26,7 +26,7 @@ class GetBrowserVersions extends Base
public function configureView(ViewDataTable $view)
{
- $view->config->show_search = false;
+ $view->config->show_search = true;
$view->config->show_exclude_low_population = false;
$view->config->addTranslation('label', $this->dimension->getName());
}
diff --git a/plugins/DevicesDetection/Reports/GetBrowsers.php b/plugins/DevicesDetection/Reports/GetBrowsers.php
index 82f1677c33..c34c604da8 100644
--- a/plugins/DevicesDetection/Reports/GetBrowsers.php
+++ b/plugins/DevicesDetection/Reports/GetBrowsers.php
@@ -27,7 +27,7 @@ class GetBrowsers extends Base
public function configureView(ViewDataTable $view)
{
$view->config->title = $this->name;
- $view->config->show_search = false;
+ $view->config->show_search = true;
$view->config->show_exclude_low_population = false;
$view->config->addTranslation('label', $this->dimension->getName());
}
diff --git a/plugins/DevicesDetection/Reports/GetModel.php b/plugins/DevicesDetection/Reports/GetModel.php
index 70fa3a0005..e2241e1ad4 100644
--- a/plugins/DevicesDetection/Reports/GetModel.php
+++ b/plugins/DevicesDetection/Reports/GetModel.php
@@ -26,7 +26,7 @@ class GetModel extends Base
public function configureView(ViewDataTable $view)
{
- $view->config->show_search = false;
+ $view->config->show_search = true;
$view->config->show_exclude_low_population = false;
$view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelModels"));
}
diff --git a/plugins/DevicesDetection/Reports/GetOsVersions.php b/plugins/DevicesDetection/Reports/GetOsVersions.php
index 4596a4dd74..76ded09255 100644
--- a/plugins/DevicesDetection/Reports/GetOsVersions.php
+++ b/plugins/DevicesDetection/Reports/GetOsVersions.php
@@ -27,7 +27,7 @@ class GetOsVersions extends Base
public function configureView(ViewDataTable $view)
{
$view->config->title = $this->name;
- $view->config->show_search = false;
+ $view->config->show_search = true;
$view->config->show_exclude_low_population = false;
$view->config->addTranslation('label', Piwik::translate("DevicesDetection_dataTableLabelSystemVersion"));
}