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-05-09 15:29:59 +0300
committersgiehl <stefan@piwik.org>2015-05-09 15:29:59 +0300
commitd191e718dc129e96c5e4b1f8476217956256ce70 (patch)
treee656558a8b8c25d68a98da3f4a9596fb239a9a06 /plugins/UserLanguage
parenta37bafb10d03488aa453a6a0d35872fe4216170d (diff)
removed unused method
Diffstat (limited to 'plugins/UserLanguage')
-rw-r--r--plugins/UserLanguage/Reports/Base.php12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/UserLanguage/Reports/Base.php b/plugins/UserLanguage/Reports/Base.php
index 5496a64b9e..366521b16a 100644
--- a/plugins/UserLanguage/Reports/Base.php
+++ b/plugins/UserLanguage/Reports/Base.php
@@ -17,16 +17,4 @@ abstract class Base extends \Piwik\Plugin\Report
{
$this->category = 'General_VisitorSettings';
}
-
- protected function getBasicUserSettingsDisplayProperties(ViewDataTable $view)
- {
- $view->config->show_search = false;
- $view->config->show_exclude_low_population = false;
-
- $view->requestConfig->filter_limit = 5;
-
- if ($view->isViewDataTableId(Graph::ID)) {
- $view->config->max_graph_elements = 5;
- }
- }
}