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
2012-07-18 12:37:22 +03:00
..
Event [Form] Merged various form events and added class FormEvent 2012-05-25 12:34:16 +02:00
Exception Revert "[Form] added a circular reference safeguard for form type" 2012-07-09 18:42:18 +02:00
Extension Added more verbose message for exception when form types have wrong getName method 2012-07-18 12:37:22 +03:00
Guess fixed CS 2012-07-09 14:54:20 +02:00
Resources merged branch umpirsky/patch-3 (PR #4815) 2012-07-10 07:45:54 +02:00
Tests Fixed my rubbish English 2012-07-16 21:54:46 +02:00
Util [Form] Extracted common parts of FormHelper and FormExtension into separate classes 2012-07-16 21:39:27 +02:00
.gitignore [Components] Tests/Autoloading fixes 2012-05-01 17:51:41 +02:00
AbstractExtension.php Fixing email 2012-05-26 09:48:33 +02:00
AbstractRendererEngine.php [Form] Fixed consideration of Twig's template inheritance and added another performance-improving check 2012-07-17 09:02:04 +02:00
AbstractType.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
AbstractTypeExtension.php [Form] setDefaultOptions() is now coded against OptionsResolverInterface 2012-05-25 12:34:16 +02:00
CallbackTransformer.php [Form] Fixed issues mentioned in the PR comments 2012-05-22 09:30:21 +02:00
CallbackValidator.php [Form] Deprecated FormValidatorInterface and moved implementations to event listeners 2012-04-13 16:42:01 +02:00
CHANGELOG.md Fixed my rubbish English 2012-07-16 21:54:46 +02:00
composer.json Revert "raised the minimum version of PHP to 5.3.4 (closes #3856)" 2012-07-15 12:13:51 +02:00
DataMapperInterface.php fixed CS 2012-07-09 14:54:20 +02:00
DataTransformerInterface.php fixed CS 2012-07-09 14:54:20 +02:00
Form.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormBuilder.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormBuilderInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormConfig.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormConfigEditorInterface.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormConfigInterface.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormError.php Fixing email 2012-05-26 09:48:33 +02:00
FormEvent.php [Form] Merged various form events and added class FormEvent 2012-05-25 12:34:16 +02:00
FormEvents.php Fixing email 2012-05-26 09:48:33 +02:00
FormExtensionInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormFactory.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormFactoryInterface.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormRegistry.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormRegistryInterface.php [Form] add thrown exceptions to FormRegistryInterface 2012-07-14 00:14:36 +03:00
FormRenderer.php Fixed my rubbish English 2012-07-16 21:54:46 +02:00
FormRendererEngineInterface.php [Form] Extracted common parts of FormHelper and FormExtension into separate classes 2012-07-16 21:39:27 +02:00
FormRendererInterface.php [Form] Extracted common parts of FormHelper and FormExtension into separate classes 2012-07-16 21:39:27 +02:00
FormTypeExtensionInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormTypeGuesserChain.php [Form] Fixed issues mentioned in the PR comments 2012-05-22 09:30:21 +02:00
FormTypeGuesserInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormTypeInterface.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
FormValidatorInterface.php fixed CS 2012-07-09 14:54:20 +02:00
FormView.php [Form] Renamed setVars() to addVars() in FormViewInterface 2012-05-25 12:34:16 +02:00
FormViewInterface.php fixed CS 2012-07-09 14:54:20 +02:00
LICENSE Updated LICENSE files copyright 2012-02-22 10:10:37 +01:00
phpunit.xml.dist [Components] Tests/Autoloading fixes 2012-05-01 17:51:41 +02:00
README.md [Components] Tests/Autoloading fixes 2012-05-01 17:51:41 +02:00
ResolvedFormType.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
ResolvedFormTypeInterface.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00
ReversedTransformer.php Fixing email 2012-05-26 09:48:33 +02:00
UnmodifiableFormConfig.php [Form] Cached the form type hierarchy in order to improve performance 2012-07-13 20:39:30 +02:00

Form Component

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

Resources

Silex integration:

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

Documentation:

http://symfony.com/doc/2.0/book/forms.html

Resources

You can run the unit tests with the following command:

phpunit

If you also want to run the unit tests that depend on other Symfony Components, install dev dependencies before running PHPUnit:

php composer.phar install --dev