aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/InstallCommand.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-02-22 11:24:41 +0100
committerJeremy Benoist <j0k3r@users.noreply.github.com>2016-02-22 11:24:41 +0100
commit12b5a8cea12c7c8b10ede7fd00d1f07ca06b1033 (patch)
treefcdf0fd0c237aa4ec9bd5a7a27f65933598a4775 /src/Wallabag/CoreBundle/Command/InstallCommand.php
parenteabb9771f47fe226ecdf5a586cc88bee982620ea (diff)
parent077ddbe1aef64326f39e5e9a9f27517dd8d6ea44 (diff)
downloadwallabag-12b5a8cea12c7c8b10ede7fd00d1f07ca06b1033.tar.gz
wallabag-12b5a8cea12c7c8b10ede7fd00d1f07ca06b1033.tar.zst
wallabag-12b5a8cea12c7c8b10ede7fd00d1f07ca06b1033.zip
Merge pull request #1702 from wallabag/v2-piwik
Added Piwik implementation
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) {