This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
FormServiceProvider.php
91 lines (73 loc) · 2.88 KB
/
FormServiceProvider.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
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
<?php
/*
* This file is part of the Silex framework.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Silex\Provider;
use Pimple\Container;
use Pimple\ServiceProviderInterface;
use Symfony\Component\Form\Extension\Csrf\CsrfExtension;
use Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationExtension;
use Symfony\Component\Form\Extension\Validator\ValidatorExtension as FormValidatorExtension;
use Symfony\Component\Form\FormFactory;
use Symfony\Component\Form\FormRegistry;
use Symfony\Component\Form\ResolvedFormTypeFactory;
/**
* Symfony Form component Provider.
*
* @author Fabien Potencier <[email protected]>
*/
class FormServiceProvider implements ServiceProviderInterface
{
public function register(Container $app)
{
if (!class_exists('Locale')) {
throw new \RuntimeException('You must either install the PHP intl extension or the Symfony Intl Component to use the Form extension.');
}
$app['form.types'] = function ($app) {
return [];
};
$app['form.type.extensions'] = function ($app) {
return [];
};
$app['form.type.guessers'] = function ($app) {
return [];
};
$app['form.extension.csrf'] = function ($app) {
if (isset($app['translator'])) {
$translationDomain = isset($app['validator.translation_domain']) ? $app['validator.translation_domain'] : null;
return new CsrfExtension($app['csrf.token_manager'], $app['translator'], $translationDomain);
}
return new CsrfExtension($app['csrf.token_manager']);
};
$app['form.extension.silex'] = function ($app) {
return new Form\SilexFormExtension($app, $app['form.types'], $app['form.type.extensions'], $app['form.type.guessers']);
};
$app['form.extensions'] = function ($app) {
$extensions = [
new HttpFoundationExtension(),
];
if (isset($app['csrf.token_manager'])) {
$extensions[] = $app['form.extension.csrf'];
}
if (isset($app['validator'])) {
$extensions[] = new FormValidatorExtension($app['validator']);
}
$extensions[] = $app['form.extension.silex'];
return $extensions;
};
$app['form.factory'] = function ($app) {
return new FormFactory($app['form.registry'], $app['form.resolved_type_factory']);
};
$app['form.registry'] = function ($app) {
return new FormRegistry($app['form.extensions'], $app['form.resolved_type_factory']);
};
$app['form.resolved_type_factory'] = function ($app) {
return new ResolvedFormTypeFactory();
};
}
}