forked from excelwebzone/EWZRecaptchaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfiguration.php
54 lines (47 loc) · 1.75 KB
/
Configuration.php
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
<?php
namespace EWZ\Bundle\RecaptchaBundle\DependencyInjection;
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
/**
* This is the class that validates and merges configuration from your app/config files
*
* To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html#cookbook-bundles-extension-config-class}
*/
class Configuration implements ConfigurationInterface
{
/**
* {@inheritDoc}
*/
public function getConfigTreeBuilder()
{
$treeBuilder = new TreeBuilder();
$rootNode = $treeBuilder->root('ewz_recaptcha');
$rootNode
->children()
->scalarNode('public_key')->isRequired()->end()
->scalarNode('private_key')->isRequired()->end()
->booleanNode('enabled')->defaultTrue()->end()
->booleanNode('ajax')->defaultFalse()->end()
->scalarNode('locale_key')->defaultValue('%kernel.default_locale%')->end()
->end()
;
$this->addHttpClientConfiguration($rootNode);
return $treeBuilder;
}
private function addHttpClientConfiguration(ArrayNodeDefinition $node)
{
$node
->children()
->arrayNode('http_proxy')
->addDefaultsIfNotSet()
->children()
->scalarNode('host')->defaultValue(null)->end()
->scalarNode('port')->defaultValue(null)->end()
->scalarNode('auth')->defaultValue(null)->end()
->end()
->end()
->end()
;
}
}