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:
authorThomas Steur <thomas.steur@googlemail.com>2014-05-29 05:12:40 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-29 05:12:40 +0400
commit15f3cad410bcb0fdc3a3e2b21b1419f6fe7df430 (patch)
tree00aab3ee025af64b631ad81b638f379d8f067673 /plugins
parentbb4d352c011cec2f6b7e46f366a03ae564e92012 (diff)
refs #5212 this *should* enable leftMenu plugin by default but it will be disabled. Need to test it
Diffstat (limited to 'plugins')
-rw-r--r--plugins/LeftMenu/Settings.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/LeftMenu/Settings.php b/plugins/LeftMenu/Settings.php
index da14c26d5c..198ac1b629 100644
--- a/plugins/LeftMenu/Settings.php
+++ b/plugins/LeftMenu/Settings.php
@@ -24,7 +24,7 @@ class Settings extends \Piwik\Plugin\Settings
protected function init()
{
- $this->setIntroduction('The left menu plugin will move the reporting menu from the top to the left if enabled. This is especially useful for large screens.');
+ $this->setIntroduction('The left menu plugin will move the reporting menu from the top to the left if enabled. This is especially useful for large displays.');
$this->createGlobalEnabledSetting();
@@ -33,11 +33,11 @@ class Settings extends \Piwik\Plugin\Settings
private function createGlobalEnabledSetting()
{
- $this->globalEnabled = new SystemSetting('globalEnabled', 'Left menu enabled by default for all users');
+ $this->globalEnabled = new SystemSetting('globalEnabled', 'Left menu enabled by default');
$this->globalEnabled->type = static::TYPE_BOOL;
$this->globalEnabled->description = 'Defines the system default for all of your users.';
$this->globalEnabled->inlineHelp = 'Users are able to disable/enable the left menu independent of the system default';
- $this->globalEnabled->defaultValue = true;
+ $this->globalEnabled->defaultValue = false;
$this->globalEnabled->readableByCurrentUser = true;
$this->addSetting($this->globalEnabled);