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-05-22 09:29:53 +02:00
..
Event fixed CS 2011-06-08 12:16:48 +02:00
Exception [Form] Moved Options classes to new OptionsParser component 2012-05-14 19:35:07 +02:00
Extension [Form] Added tests for the case when "property_path" is null or false. Instead of setting "property_path" to false, you should set "mapped" to false instead. 2012-05-22 09:29:53 +02:00
Guess fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
Resources/config [Form] Deprecated FormValidatorInterface and moved implementations to event listeners 2012-04-13 16:42:01 +02:00
Tests [Form] Added tests for the case when "property_path" is null or false. Instead of setting "property_path" to false, you should set "mapped" to false instead. 2012-05-22 09:29:53 +02:00
Util [Form] Tightened PropertyPath validation to reject any empty value (such as false) 2012-05-22 09:29:53 +02:00
.gitignore [Components] Tests/Autoloading fixes 2012-05-01 17:51:41 +02:00
AbstractExtension.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
AbstractType.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
AbstractTypeExtension.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
CallbackTransformer.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
CallbackValidator.php [Form] Deprecated FormValidatorInterface and moved implementations to event listeners 2012-04-13 16:42:01 +02:00
CHANGELOG.md [Form] Added tests for the case when "property_path" is null or false. Instead of setting "property_path" to false, you should set "mapped" to false instead. 2012-05-22 09:29:53 +02:00
composer.json [OptionsParser] Renamed OptionsParser to OptionsResolver 2012-05-14 19:35:07 +02:00
DataMapperInterface.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
DataTransformerInterface.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
Form.php [Form] Added tests for the case when "property_path" is null or false. Instead of setting "property_path" to false, you should set "mapped" to false instead. 2012-05-22 09:29:53 +02:00
FormBuilder.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +02:00
FormConfig.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +02:00
FormConfigInterface.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +02:00
FormError.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
FormEvents.php [Form] Deprecated FormValidatorInterface and moved implementations to event listeners 2012-04-13 16:42:01 +02:00
FormExtensionInterface.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
FormFactory.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +02:00
FormFactoryInterface.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
FormInterface.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +02:00
FormTypeExtensionInterface.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
FormTypeGuesserChain.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
FormTypeGuesserInterface.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
FormTypeInterface.php [Form] fix PhpDoc 2012-05-21 04:26:59 +02:00
FormValidatorInterface.php [Form] Deprecated FormValidatorInterface and moved implementations to event listeners 2012-04-13 16:42:01 +02:00
FormView.php fixed CS 2012-05-18 19:42:42 +02:00
ImmutableFormConfig.php [Form] Adapted Form to create a deterministic property path by default 2012-05-22 09:29:53 +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
ReversedTransformer.php [Form] Fix the ReversedTransform class 2011-05-10 20:25:22 +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