]>
Commit | Line | Data |
---|---|---|
4f5b44bd NL |
1 | <?php |
2 | ||
3 | /* | |
4 | * This file is part of the Symfony package. | |
5 | * | |
6 | * (c) Fabien Potencier <fabien@symfony.com> | |
7 | * | |
8 | * For the full copyright and license information, please view the LICENSE | |
9 | * file that was distributed with this source code. | |
10 | */ | |
11 | ||
12 | namespace Symfony\Component\Form\Extension\Core; | |
13 | ||
14 | use Symfony\Component\Form\AbstractExtension; | |
15 | use Symfony\Component\PropertyAccess\PropertyAccess; | |
16 | ||
17 | /** | |
18 | * Represents the main form extension, which loads the core functionality. | |
19 | * | |
20 | * @author Bernhard Schussek <bschussek@gmail.com> | |
21 | */ | |
22 | class CoreExtension extends AbstractExtension | |
23 | { | |
24 | protected function loadTypes() | |
25 | { | |
26 | return array( | |
27 | new Type\FormType(PropertyAccess::getPropertyAccessor()), | |
28 | new Type\BirthdayType(), | |
29 | new Type\CheckboxType(), | |
30 | new Type\ChoiceType(), | |
31 | new Type\CollectionType(), | |
32 | new Type\CountryType(), | |
33 | new Type\DateType(), | |
34 | new Type\DateTimeType(), | |
35 | new Type\EmailType(), | |
36 | new Type\HiddenType(), | |
37 | new Type\IntegerType(), | |
38 | new Type\LanguageType(), | |
39 | new Type\LocaleType(), | |
40 | new Type\MoneyType(), | |
41 | new Type\NumberType(), | |
42 | new Type\PasswordType(), | |
43 | new Type\PercentType(), | |
44 | new Type\RadioType(), | |
45 | new Type\RepeatedType(), | |
46 | new Type\SearchType(), | |
47 | new Type\TextareaType(), | |
48 | new Type\TextType(), | |
49 | new Type\TimeType(), | |
50 | new Type\TimezoneType(), | |
51 | new Type\UrlType(), | |
52 | new Type\FileType(), | |
53 | new Type\ButtonType(), | |
54 | new Type\SubmitType(), | |
55 | new Type\ResetType(), | |
56 | new Type\CurrencyType(), | |
57 | ); | |
58 | } | |
59 | } |