aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures
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/DataFixtures
parentfa64d861105bd0713acd7ac5d116353273524b4f (diff)
downloadwallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.tar.gz
wallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.tar.zst
wallabag-07643dde08a7cd3f5a556021643e64dd1d5e89f2.zip
Fix #1137: implemented Piwik
Diffstat (limited to 'src/Wallabag/CoreBundle/DataFixtures')
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
index 5e89c2a9..10b60f30 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
@@ -110,6 +110,21 @@ class LoadSettingData extends AbstractFixture implements OrderedFixtureInterface
110 'value' => 'http://v2.wallabag.org', 110 'value' => 'http://v2.wallabag.org',
111 'section' => 'misc', 111 'section' => 'misc',
112 ], 112 ],
113 [
114 'name' => 'piwik_enabled',
115 'value' => '0',
116 'section' => 'analytics',
117 ],
118 [
119 'name' => 'piwik_host',
120 'value' => 'http://v2.wallabag.org',
121 'section' => 'analytics',
122 ],
123 [
124 'name' => 'piwik_site_id',
125 'value' => '1',
126 'section' => 'analytics',
127 ],
113 ]; 128 ];
114 129
115 foreach ($settings as $setting) { 130 foreach ($settings as $setting) {