aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.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/DataFixtures/ORM/LoadSettingData.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/DataFixtures/ORM/LoadSettingData.php')
-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) {