imatic / form-bundle
Bundle for working with Symfony forms
Installs: 7 179
Dependents: 3
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: ^7.2 || ^8.0
- doctrine/doctrine-bundle: ^2.0
- doctrine/orm: ^2.3
- symfony/expression-language: ^4.4 || ^5.0 || ^6.2
- symfony/form: ^4.4 || ^5.0 || ^6.2
- symfony/framework-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/translation: ^4.4 || ^5.0 || ^6.2
- symfony/twig-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/validator: ^4.4 || ^5.0 || ^6.2
- twig/twig: ^2.12 || ^3.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.4
- imatic/testing: ^6.0.0
- symfony/browser-kit: ^4.4 || ^5.0 || ^6.2
- symfony/phpunit-bridge: ^4.4 || ^5.0 || ^6.2
- symfony/security-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/web-profiler-bundle: ^4.4 || ^5.0 || ^6.2
- symfony/yaml: ^4.4 || ^5.0 || ^6.2
- dev-master
- v5.2.1
- v5.2.0
- v5.1.0
- v5.0.5
- v5.0.4
- v5.0.3
- v5.0.2
- v5.0.1
- v5.0.0
- 5.0.0-alpha.2
- 5.0.0-alpha
- v4.x-dev
- v4.0.1
- v4.0
- v3.0.15
- v3.0.14
- v3.0.13
- v3.0.12
- v3.0.11
- v3.0.10
- v3.0.9
- v3.0.8
- 3.0.7
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0
- 2.6.x-dev
- 2.6.2
- 2.6.1
- 2.6.0
- 2.4.1
- 2.4.0
- 2.3.x-dev
- 2.2.x-dev
- dev-update_symfony62
- dev-RESEARCH-220
- dev-v4_update
- dev-update_deps
- dev-entity_extension
- dev-nenadalm
This package is auto-updated.
Last update: 2025-03-31 08:32:02 UTC
README
ImaticFormBundle
Form types
- Imatic\Bundle\FormBundle\Form\Type\AjaxChoiceType
- Imatic\Bundle\FormBundle\Form\Type\AjaxEntityChoiceType
- Imatic\Bundle\FormBundle\Form\Type\DateRangeType
- Imatic\Bundle\FormBundle\Form\Type\DateTimeRangeType
- Imatic\Bundle\FormBundle\Form\Type\RangeType
Ajax entity choice
Implements choice of single entity or collection of entities using XHR.
Dependencies: jQuery, Select2
<?php use Imatic\Bundle\FormBundle\Form\Type\AjaxEntityChoiceType; class ExampleType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('author', AjaxEntityChoiceType::class, [ 'class' => 'MyExampleBundle:User', 'route' => 'app_example_example_autocomplete', ]); } }
The widget will send a GET request to the specified route with the
entered search term. The request format depends on the request_type
option:
filter
- ?filter[search][value]=termsimple
- ?search=term
The application should reply with a JSON response, example:
[ {"id": 1, "text": "First Item"}, {"id": 2, "text": "Second Item"} ]
Additional options:
multiple
- allow multiple items to be selectedplaceholder
- text displayed if no item is selectedquery_builder
- instance of QueryBuilder or Closure(EntityManager $em, $class): QueryBuilderid_provider
- callable(object $entity): scalar (should return ID of the entity)text_provider
- callable(object $item): string (should return text representation of the entity)request_type
- filter (default) or simpleroute_attrs
- custom route attributesentity_manager
- name of the entity manager to use
Datepicker
This example shows, how to change default date type format and modify moment configurations by form extension.
<?php namespace App\Form\Extension; use Imatic\Bundle\FormBundle\Form\Extension\DatepickerExtension; use Symfony\Component\OptionsResolver\OptionsResolver; class DateTypeExtension extends DatepickerExtension { public function configureOptions(OptionsResolver $resolver) { parent::configureOptions($resolver); $resolver->setDefaults([ 'format' => 'dd.MM.yyyy', 'date_format' => 'DD.MM.YYYY', 'config_locale' => [ 'en' => [ 'week' => ['dow' => 1], ], ], ]); } public static function getExtendedTypes(): iterable { return [DateType::class]; } }
Collections
This bundle provides JS functionality needed to add, edit and delete
elements of the collection. By default, newly added items are prefixed
with new_
and random number e.g. new_16782845986841
. But this can
cause mistakes in server-side validation.
From version 5.2. is possible define data_index
with true
or numeric
value in collection definition to count items in collection
from 0...N. If collection can be loaded with existing data, number of items
should be specified in data_index
value.
<?php public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('collection', CollectionType::class, [ 'data_index' => $entity->getCollection()->count() ]); }
Form extensions
Form theme
This extensions allows you to set form theme through the type's options.
<?php class ExampleType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { // example: setting template of child form (field) $builder->add('example', null, [ // override form theme template 'template' => 'MyBundle:Form:example_theme.html.twig', // pass extra variables to the theme templates when this field is rendered 'template_parameters' => [ 'foo' => 'bar', ], ]); } public function configureOptions(OptionsResolver $resolver) { // example: setting template of the form type itself $resolver->setDefaults([ 'template' => 'MyBundle:Form:example_theme.html.twig', 'template_parameters' => ['foo' => 'bar'], ]); } }
Validator constraints
Number
- ensures that number have correct precision and scale
options
- precision
- scale
Latitude
Longtitude
NotNullGroup
This class-level constraint ensures that all given properties are either set or null.
Valid states: all properties are null, all properties are NOT null.
NotNullOneOf
This class-level constraint ensures that at least one of the given properties is NOT null.
Valid states: at least one property is NOT null
Example
<?php use Imatic\Bundle\FormBundle\Validator\Constraints as ImaticAssert; /** * Evidence * * @ORM\Entity * @ImaticAssert\NotNullGroup(properties={"sitterFirstName", "sitterLastName", "sitterId", "sitterPhone", "sitterRelation"}) * @ImaticAssert\NotNullOneOf(properties={"mother", "father"}, message="Either the mother or the father information must be specified.") */ class Evidence { // ... }
Data transformers
EmptyEntityToNullTransformer
This transformers converts an entity object to null, if it is considered empty. The check is performed based on list of properties that are to be verified.
If strict mode is disabled (default), both nulls and empty strings are considered empty.
If strict mode is enabled, only nulls are considered empty.
<?php use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Imatic\Bundle\FormBundle\Form\DataTransformer\EmptyEntityToNullTransformer; /** * Address type */ class AddressType extends AbstractType { /** * @param FormBuilderInterface $builder * @param array $options */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('street') ->add('number') ->add('city') ->add('postalCode', 'text') ; $builder->addModelTransformer(new EmptyEntityToNullTransformer( array_keys($builder->all()) )); } // ... }