-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathConfiguration.php
More file actions
140 lines (130 loc) · 5.58 KB
/
Copy pathConfiguration.php
File metadata and controls
140 lines (130 loc) · 5.58 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
<?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')->defaultValue(true)->end()
->booleanNode('strict')->defaultValue(true)->end()
->booleanNode('escaping')->defaultValue(true)->end()
->booleanNode('line_breaks')->defaultValue(true)->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()
->end()
->end();
$this->addEmoticonSection($rootNode);
return $treeBuilder;
}
private function addEmoticonSection(ArrayNodeDefinition $rootNode)
{
$rootNode
->children()
->arrayNode('emoticon')
->info('emoticon configuration')
->canBeUnset()
->addDefaultsIfNotSet()
->children()
->scalarNode('resource')->defaultValue('@FMBbcodeBundle/Resources/config/emoticons.yml')->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('extension')->defaultValue('png')->end()
->end()
->end()
->end()
;
}
}