aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures/ORM
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-01-31 14:54:30 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-31 15:31:30 +0100
commita74a6ca2b164447f2675a13840f862c2c4c672fd (patch)
treebc3c215e58d96925d2ce109193eb1e08e7afc277 /src/Wallabag/CoreBundle/DataFixtures/ORM
parent07c9b1c98a104a88f6bd0c97b54a8783444a2ac4 (diff)
downloadwallabag-a74a6ca2b164447f2675a13840f862c2c4c672fd.tar.gz
wallabag-a74a6ca2b164447f2675a13840f862c2c4c672fd.tar.zst
wallabag-a74a6ca2b164447f2675a13840f862c2c4c672fd.zip
Add new export config
Diffstat (limited to 'src/Wallabag/CoreBundle/DataFixtures/ORM')
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
index 8e3c7b59..5e89c2a9 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
@@ -71,6 +71,26 @@ class LoadSettingData extends AbstractFixture implements OrderedFixtureInterface
71 'section' => 'export', 71 'section' => 'export',
72 ], 72 ],
73 [ 73 [
74 'name' => 'export_csv',
75 'value' => '1',
76 'section' => 'export',
77 ],
78 [
79 'name' => 'export_json',
80 'value' => '1',
81 'section' => 'export',
82 ],
83 [
84 'name' => 'export_txt',
85 'value' => '1',
86 'section' => 'export',
87 ],
88 [
89 'name' => 'export_xml',
90 'value' => '1',
91 'section' => 'export',
92 ],
93 [
74 'name' => 'pocket_consumer_key', 94 'name' => 'pocket_consumer_key',
75 'value' => null, 95 'value' => null,
76 'section' => 'import', 96 'section' => 'import',