aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/InstallCommand.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2016-02-19 15:27:57 +0100
committerNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2016-02-19 15:27:57 +0100
commit07643dde08a7cd3f5a556021643e64dd1d5e89f2 (patch)
treef8767b88b8913ad7464e6553d2a2e5c1a82c0146 /src/Wallabag/CoreBundle/Command/InstallCommand.php
parentfa64d861105bd0713acd7ac5d116353273524b4f (diff)
downloadwallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.tar.gz
wallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.tar.zst
wallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.zip
Fix #1137: implemented Piwik
Diffstat (limited to 'src/Wallabag/CoreBundle/Command/InstallCommand.php')
-rw-r--r--src/Wallabag/CoreBundle/Command/InstallCommand.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Command/InstallCommand.php b/src/Wallabag/CoreBundle/Command/InstallCommand.php
index b3e20ceb..93520f9a 100644
--- a/src/Wallabag/CoreBundle/Command/InstallCommand.php
+++ b/src/Wallabag/CoreBundle/Command/InstallCommand.php
@@ -312,6 +312,21 @@ class InstallCommand extends ContainerAwareCommand
312 'value' => 'http://v2.wallabag.org', 312 'value' => 'http://v2.wallabag.org',
313 'section' => 'misc', 313 'section' => 'misc',
314 ], 314 ],
315 [
316 'name' => 'piwik_enabled',
317 'value' => '0',
318 'section' => 'analytics',
319 ],
320 [
321 'name' => 'piwik_host',
322 'value' => 'http://v2.wallabag.org',
323 'section' => 'analytics',
324 ],
325 [
326 'name' => 'piwik_site_id',
327 'value' => '1',
328 'section' => 'analytics',
329 ],
315 ]; 330 ];
316 331
317 foreach ($settings as $setting) { 332 foreach ($settings as $setting) {