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/tests/Symfony/Tests/Component/Form
Bernhard Schussek a97366fbcb [Form] Split signature of FormFactory::create() into create() and createNamed()
The data can now be passed to all creation methods:

    $form = $factory->create('form', $data);

By default, a form will receive the name of its type ("form" in above example). If you wish to pass a custom name, use createNamed():

    $form = $factory->createNamed('form', 'myform', $data);
2011-04-22 10:42:21 +02:00
..
ChoiceList [Form] Improved test coverage of MonthChoiceList and fixed timezone used in it. Fixes https://github.com/symfony/symfony/pull/433 2011-04-15 12:26:07 +02:00
CsrfProvider replaced symfony-project.org by symfony.com 2011-03-06 12:40:06 +01:00
DataMapper [Form] Moved PropertyPath, PropertyPathIterator and VirtualFormAwareIterator to subnamespace Util 2011-03-27 15:37:13 +02:00
DataTransformer [Form] Renamed ChoiceUtil to FormUtil and gave its methods more general names 2011-04-18 15:07:12 +02:00
EventListener [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
Fixtures [Form] Renamed 'filter' listeners to 'on' to match naming conventions across the framework 2011-04-15 10:57:32 +02:00
Type [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
Util [Form] Renamed ChoiceUtil to FormUtil and gave its methods more general names 2011-04-18 15:07:12 +02:00
Validator [Form] added a unit test 2011-04-18 19:01:09 +02:00
AbstractDivLayoutTest.php [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
AbstractLayoutTest.php [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
AbstractTableLayoutTest.php [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
FormBuilderTest.php [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
FormFactoryTest.php [Form] Split signature of FormFactory::create() into create() and createNamed() 2011-04-22 10:42:21 +02:00
FormInterface.php [Form] Merged Field and Form. Merged FieldBuilder and FormBuilder. After the refactoring, the distinction between the two concepts is small enough to merge them 2011-03-20 13:35:19 +01:00
FormTest.php [Form] Renamed Form::getView() to createView() to clearly indicate that each call returns a new object 2011-04-15 13:52:11 +02:00
PropertyPathTest.php [Form] PropertyPath now can handle elements with special characters 2011-04-15 15:25:19 +02:00