├── .gitignore ├── .travis.yml ├── AdjusterRegistry.php ├── Annotations ├── Embed.php ├── Field.php └── Form.php ├── CodeteFormGeneratorBundle.php ├── DependencyInjection ├── CodeteFormGeneratorExtension.php └── Compiler │ ├── AbstractCompilerPass.php │ ├── ConfigurationModifiersCompilerPass.php │ ├── FieldResolversCompilerPass.php │ └── ViewProvidersCompilerPass.php ├── Form └── Type │ └── EmbedType.php ├── FormConfigurationFactory.php ├── FormConfigurationModifierInterface.php ├── FormFieldResolverInterface.php ├── FormGenerator.php ├── FormViewProviderInterface.php ├── LICENSE ├── README.md ├── Resources └── config │ └── form_generator.xml ├── Tests ├── Annotations │ └── FormTest.php ├── BaseTest.php ├── CodeteFormGeneratorBundleTest.php ├── DependencyInjection │ ├── CodeteFormGeneratorExtensionTest.php │ └── Compiler │ │ ├── ConfigurationModifiersCompilerPassTest.php │ │ ├── FieldResolversCompilerPassTest.php │ │ └── ViewProvidersCompilerPassTest.php ├── FormConfigurationFactoryTest.php ├── FormConfigurationModifier │ ├── InactivePersonModifier.php │ └── NoPhotoPersonModifier.php ├── FormFieldResolver │ └── PersonSalaryResolver.php ├── FormGeneratorTest.php ├── FormViewProvider │ └── PersonAddFormView.php ├── Model │ ├── ClassLevelFields.php │ ├── Director.php │ ├── DisplayOptions.php │ ├── InheritanceTest.php │ ├── Person.php │ ├── Simple.php │ ├── SimpleNotOverridingDefaultView.php │ ├── SimpleOverridingDefaultView.php │ └── SimpleParent.php └── bootstrap.php ├── UPGRADE-2.0.md ├── composer.json └── phpunit.xml.dist /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /AdjusterRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/AdjusterRegistry.php -------------------------------------------------------------------------------- /Annotations/Embed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Annotations/Embed.php -------------------------------------------------------------------------------- /Annotations/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Annotations/Field.php -------------------------------------------------------------------------------- /Annotations/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Annotations/Form.php -------------------------------------------------------------------------------- /CodeteFormGeneratorBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/CodeteFormGeneratorBundle.php -------------------------------------------------------------------------------- /DependencyInjection/CodeteFormGeneratorExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/DependencyInjection/CodeteFormGeneratorExtension.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/AbstractCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/DependencyInjection/Compiler/AbstractCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/ConfigurationModifiersCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/DependencyInjection/Compiler/ConfigurationModifiersCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/FieldResolversCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/DependencyInjection/Compiler/FieldResolversCompilerPass.php -------------------------------------------------------------------------------- /DependencyInjection/Compiler/ViewProvidersCompilerPass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/DependencyInjection/Compiler/ViewProvidersCompilerPass.php -------------------------------------------------------------------------------- /Form/Type/EmbedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Form/Type/EmbedType.php -------------------------------------------------------------------------------- /FormConfigurationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/FormConfigurationFactory.php -------------------------------------------------------------------------------- /FormConfigurationModifierInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/FormConfigurationModifierInterface.php -------------------------------------------------------------------------------- /FormFieldResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/FormFieldResolverInterface.php -------------------------------------------------------------------------------- /FormGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/FormGenerator.php -------------------------------------------------------------------------------- /FormViewProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/FormViewProviderInterface.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/form_generator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Resources/config/form_generator.xml -------------------------------------------------------------------------------- /Tests/Annotations/FormTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Annotations/FormTest.php -------------------------------------------------------------------------------- /Tests/BaseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/BaseTest.php -------------------------------------------------------------------------------- /Tests/CodeteFormGeneratorBundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/CodeteFormGeneratorBundleTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/CodeteFormGeneratorExtensionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/DependencyInjection/CodeteFormGeneratorExtensionTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Compiler/ConfigurationModifiersCompilerPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/DependencyInjection/Compiler/ConfigurationModifiersCompilerPassTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Compiler/FieldResolversCompilerPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/DependencyInjection/Compiler/FieldResolversCompilerPassTest.php -------------------------------------------------------------------------------- /Tests/DependencyInjection/Compiler/ViewProvidersCompilerPassTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/DependencyInjection/Compiler/ViewProvidersCompilerPassTest.php -------------------------------------------------------------------------------- /Tests/FormConfigurationFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormConfigurationFactoryTest.php -------------------------------------------------------------------------------- /Tests/FormConfigurationModifier/InactivePersonModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormConfigurationModifier/InactivePersonModifier.php -------------------------------------------------------------------------------- /Tests/FormConfigurationModifier/NoPhotoPersonModifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormConfigurationModifier/NoPhotoPersonModifier.php -------------------------------------------------------------------------------- /Tests/FormFieldResolver/PersonSalaryResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormFieldResolver/PersonSalaryResolver.php -------------------------------------------------------------------------------- /Tests/FormGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormGeneratorTest.php -------------------------------------------------------------------------------- /Tests/FormViewProvider/PersonAddFormView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/FormViewProvider/PersonAddFormView.php -------------------------------------------------------------------------------- /Tests/Model/ClassLevelFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/ClassLevelFields.php -------------------------------------------------------------------------------- /Tests/Model/Director.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/Director.php -------------------------------------------------------------------------------- /Tests/Model/DisplayOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/DisplayOptions.php -------------------------------------------------------------------------------- /Tests/Model/InheritanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/InheritanceTest.php -------------------------------------------------------------------------------- /Tests/Model/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/Person.php -------------------------------------------------------------------------------- /Tests/Model/Simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/Simple.php -------------------------------------------------------------------------------- /Tests/Model/SimpleNotOverridingDefaultView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/SimpleNotOverridingDefaultView.php -------------------------------------------------------------------------------- /Tests/Model/SimpleOverridingDefaultView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/SimpleOverridingDefaultView.php -------------------------------------------------------------------------------- /Tests/Model/SimpleParent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/Model/SimpleParent.php -------------------------------------------------------------------------------- /Tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/Tests/bootstrap.php -------------------------------------------------------------------------------- /UPGRADE-2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/UPGRADE-2.0.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exadel-inc/codete-FormGeneratorBundle/HEAD/phpunit.xml.dist --------------------------------------------------------------------------------