forked from helios-ag/FMBbCodeBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathConfiguration.php
More file actions
145 lines (136 loc) · 5.86 KB
/
Configuration.php
File metadata and controls
145 lines (136 loc) · 5.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<?php
namespace FM\BbcodeBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This class contains the configuration information for the bundle.
*
* This information is solely responsible for how the different configuration
* sections are normalized, and merged.
*
* @author Al Ganiev <helios.ag@gmail.com>
* @copyright 2013 Al Ganiev
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
class Configuration implements ConfigurationInterface
{
/**
* Generates the configuration tree.
*
* @return \Symfony\Component\Config\Definition\Builder\TreeBuilder
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('fm_bbcode', 'array');
$rootNode
->children()
->arrayNode('config')
->canBeUnset()
->addDefaultsIfNotSet()
->children()
->arrayNode('filters')
->canBeUnset()
->ignoreExtraKeys()
->defaultValue(array())
->prototype('array')
->children()
->scalarNode('classname')->end()
->scalarNode('class')->end()
->end()
->end()
->end()
->arrayNode('hooks')
->canBeUnset()
->ignoreExtraKeys()
->defaultValue(array())
->prototype('array')
->children()
->scalarNode('classname')->end()
->scalarNode('class')->end()
->end()
->end()
->end()
->scalarNode('messages')
->defaultNull()
->end()
->arrayNode('templates')
->canBeUnset()
->ignoreExtraKeys()
->defaultValue(array())
->prototype('array')
->children()
->scalarNode('path')->end()
->end()
->end()
->end()
->end()
->end()
->arrayNode('filter_sets')
->useAttributeAsKey('name')
->prototype('array')
->children()
->scalarNode('locale')->defaultValue('default')->end()
->booleanNode('xhtml')->defaultTrue()->end()
->booleanNode('strict')->defaultTrue()->end()
->booleanNode('escaping')->defaultTrue()->end()
->booleanNode('line_breaks')->defaultTrue()->end()
->scalarNode('max_newlines')->defaultValue(3)->end()
->arrayNode('filters')
->useAttributeAsKey('name')
->prototype('variable')->end()
->end()
->arrayNode('hooks')
->useAttributeAsKey('name')
->prototype('variable')->end()
->end()
->arrayNode('whitelist')
->useAttributeAsKey('name')
->prototype('variable')->end()
->end()
->end()
->end()
->end()
->scalarNode('public_path')->defaultValue('%kernel.project_dir%/public')->end()
->end()
->end();
$this->addEmoticonSection($rootNode);
return $treeBuilder;
}
private function addEmoticonSection(ArrayNodeDefinition $rootNode)
{
$rootNode
->children()
->arrayNode('emoticon')
->info('emoticon configuration')
->canBeUnset()
->addDefaultsIfNotSet()
->children()
->scalarNode('resource')->end()
->scalarNode('type')->end()
->scalarNode('path')
->defaultValue('/emoticons/')
->validate()
->ifTrue(function ($v) { return 0 !== strpos($v, '/'); })
->then(function ($v) {
$message = sprintf(
'The "fm_bbcode.emoticon.path" '.
'configuration must be start with a '.
'"/", "%s" given.',
$v
);
throw new \RuntimeException($message);
})
->end()
->end()
->scalarNode('folder')
->defaultValue('%kernel.project_dir%/vendor/mjohnson/decoda/emoticons')
->end()
->scalarNode('extension')->defaultValue('png')->end()
->end()
->end()
->end()
;
}
}