This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Form
Fabien Potencier 5931ef7288 Merge branch '2.8' into 3.0
* 2.8:
  updated copyright year
  updated copyright year
  Update copyright year
  [2.3] Static Code Analysis for Components
2016-01-03 16:35:16 +01:00
..
ChoiceList [Form] Remove choices_as_values option on ChoiceType 2015-11-28 10:26:50 +01:00
Exception [Form] removed deprecated features 2015-10-01 16:20:48 +02:00
Extension Merge branch '2.8' into 3.0 2015-12-30 19:45:14 +01:00
Guess [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
Resources Merge branch '2.3' into 2.7 2015-11-27 06:41:56 +01:00
Test [Form] removed deprecated features 2015-10-01 16:20:48 +02:00
Tests Merge branch '2.8' into 3.0 2015-12-30 11:41:35 +01:00
Util [3.0] Clean Form, Validator, DowCrawler and some more 2015-10-02 19:05:43 +02:00
.gitignore
AbstractExtension.php [Form] removed deprecated FormType::getName() 2015-10-01 16:20:48 +02:00
AbstractRendererEngine.php [2.3] [Config] [Console] [DependencyInjection] [DomCrawler] [Form] [HttpKernel] [PropertyAccess] [Security] [Translation] [Yaml] static code analysis, code cleanup 2015-03-07 08:38:01 +01:00
AbstractType.php Added getBlockPrefix to FormTypeInterface 2015-11-28 12:15:28 +01:00
AbstractTypeExtension.php fixed CS 2015-06-11 21:09:58 +02:00
Button.php fixes CS 2015-08-24 09:13:45 +02:00
ButtonBuilder.php [Form] removed deprecated features 2015-10-01 16:20:48 +02:00
ButtonTypeInterface.php
CallbackTransformer.php Replace is_callable checks with type hints 2015-10-05 16:57:27 +02:00
CHANGELOG.md Merge branch '2.8' 2015-09-27 12:13:28 +02:00
ClickableInterface.php
composer.json Merge branch '2.8' 2015-10-30 16:35:59 -07:00
DataMapperInterface.php
DataTransformerInterface.php
Form.php Merge branch '2.8' 2015-11-27 06:46:53 +01:00
FormBuilder.php [Form] Deprecated FormTypeInterface::getName() and passing of type instances 2015-07-02 10:02:46 +02:00
FormBuilderInterface.php
FormConfigBuilder.php [Form] removed deprecated features 2015-10-01 16:20:48 +02:00
FormConfigBuilderInterface.php
FormConfigInterface.php
FormError.php Merge branch '2.3' into 2.5 2014-12-22 17:29:52 +01:00
FormErrorIterator.php fixes CS 2015-08-24 09:13:45 +02:00
FormEvent.php
FormEvents.php Merge branch '2.8' 2015-05-12 17:48:43 +02:00
FormExtensionInterface.php
FormFactory.php [Form] Add context to FormFactory deprecations 2015-12-02 14:02:29 +01:00
FormFactoryBuilder.php [Form] Deprecated FormTypeInterface::getName() and passing of type instances 2015-07-02 10:02:46 +02:00
FormFactoryBuilderInterface.php
FormFactoryInterface.php [3.0] Clean Form, Validator, DowCrawler and some more 2015-10-02 19:05:43 +02:00
FormInterface.php
FormRegistry.php fix type assignement 2015-11-25 16:48:40 +01:00
FormRegistryInterface.php [Form] remove validation of FormRegistry::getType as FormRegistry::hasType does not validate either 2015-10-22 02:46:43 +02:00
FormRenderer.php [Form] Drop remaing CsrfProviderAdapter/Interface mentions 2015-11-28 10:23:07 +01:00
FormRendererEngineInterface.php
FormRendererInterface.php
Forms.php [2.5] cleanup deprecated uses 2015-01-05 09:51:41 +01:00
FormTypeExtensionInterface.php [3.0] Remove more deprecated interfaces in Form and Validator 2015-10-02 12:57:59 +02:00
FormTypeGuesserChain.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
FormTypeGuesserInterface.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
FormTypeInterface.php Added getBlockPrefix to FormTypeInterface 2015-11-28 12:15:28 +01:00
FormView.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
LICENSE Update copyright year 2016-01-01 23:53:47 -03:00
NativeRequestHandler.php [2.3] Fix @link annotations 2015-04-10 20:54:05 +02:00
phpunit.xml.dist Add missing exclusions from phpunit.xml.dist 2015-11-18 09:19:46 +01:00
PreloadedExtension.php [Form] removed deprecated FormType::getName() 2015-10-01 16:20:48 +02:00
README.md Merge branch '2.8' 2015-09-06 10:47:32 +02:00
RequestHandlerInterface.php
ResolvedFormType.php [Form] Added getBlockPrefix() to ResolvedFormTypeInterface 2015-11-29 22:12:04 +01:00
ResolvedFormTypeFactory.php
ResolvedFormTypeFactoryInterface.php
ResolvedFormTypeInterface.php [Form] Added getBlockPrefix() to ResolvedFormTypeInterface 2015-11-29 22:12:04 +01:00
ReversedTransformer.php [2.3] CS And DocBlock Fixes 2014-12-22 16:58:09 +01:00
SubmitButton.php
SubmitButtonBuilder.php
SubmitButtonTypeInterface.php

Form Component

Form provides tools for defining forms, rendering and mapping request data to related models. Furthermore it provides integration with the Validation component.

Resources

Silex integration:

https://github.com/silexphp/Silex/blob/master/src/Silex/Provider/FormServiceProvider.php

Documentation:

https://symfony.com/doc/3.0/book/forms.html

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Form/
$ composer install
$ phpunit