Skip to content

How to Create a Custom Form Field Type

Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.

Read the updated version of this page for Symfony 7.1 (the current stable version).

Symfony comes with a bunch of core field types available for building forms. However, there are situations where you may want to create a custom form field type for a specific purpose. This article assumes you need a field definition that holds a shipping option, based on the existing choice field. This section explains how the field is defined and how you can customize its layout.

Defining the Field Type

In order to create the custom field type, first you have to create the class representing the field. In this situation the class holding the field type will be called ShippingType and the file will be stored in the default location for form fields, which is <BundleName>\Form\Type.

All field types must implement the FormTypeInterface, but you should instead extend from AbstractType, which already implements that interface and provides some utilities:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// src/AppBundle/Form/Type/ShippingType.php
namespace AppBundle\Form\Type;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\OptionsResolver\OptionsResolver;

class ShippingType extends AbstractType
{
    public function configureOptions(OptionsResolver $resolver)
    {
        $resolver->setDefaults([
            'choices' => [
                'Standard Shipping' => 'standard',
                'Expedited Shipping' => 'expedited',
                'Priority Shipping' => 'priority',
            ],
            'choices_as_values' => true,
        ]);
    }

    public function getParent()
    {
        return ChoiceType::class;
    }
}

Tip

The location of this file is not important - the Form\Type directory is just a convention.

Here, the return value of the getParent() function indicates that you're extending the ChoiceType field. This means that, by default, you inherit all of the logic and rendering of that field type. To see some of the logic, check out the ChoiceType class.

Note

The PHP class extension mechanism and the Symfony form field extension mechanism are not the same. The parent type returned in getParent() is what Symfony uses to build and manage the field type. Making the PHP class extend from AbstractType is only a convenient way of implementing the required FormTypeInterface.

There are three methods that are particularly important:

buildForm()
Each field type has a buildForm() method, which is where you configure and build any field(s). Notice that this is the same method you use to setup your forms, and it works the same here.
buildView()
This method is used to set any extra variables you'll need when rendering your field in a template. For example, in ChoiceType, a multiple variable is set and used in the template to set (or not set) the multiple attribute on the select field. See Creating a Template for the Field for more details.
configureOptions()
This defines options for your form type that can be used in buildForm() and buildView(). There are a lot of options common to all fields (see FormType Field), but you can create any others that you need here.

Tip

If you're creating a field that consists of many fields, then be sure to set your "parent" type as form or something that extends form. Also, if you need to modify the "view" of any of your child types from your parent type, use the finishView() method.

The goal of this field was to extend the choice type to enable selection of the shipping type. This is achieved by fixing the choices to a list of available shipping options.

Creating a Template for the Field

Each field type is rendered by a template fragment, which is determined in part by the class name of your type. For more information, see How to Customize Form Rendering.

Note

The first part of the prefix (e.g. shipping) comes from the class name (ShippingType -> shipping). This can be controlled by overriding getBlockPrefix() in ShippingType.

Caution

When the name of your form class matches any of the built-in field types, your form might not be rendered correctly. A form type named AppBundle\Form\PasswordType will have the same block name as the built-in PasswordType and won't be rendered correctly. Override the getBlockPrefix() method to return a unique block prefix (e.g. app_password) to avoid collisions.

In this case, since the parent field is ChoiceType, you don't need to do any work as the custom field type will automatically be rendered like a ChoiceType. But for the sake of this example, suppose that when your field is "expanded" (i.e. radio buttons or checkboxes, instead of a select field), you want to always render it in a ul element. In your form theme template (see above link for details), create a shipping_widget block to handle this:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{# app/Resources/views/form/fields.html.twig #}
{% block shipping_widget %}
    {% spaceless %}
        {% if expanded %}
            <ul {{ block('widget_container_attributes') }}>
            {% for child in form %}
                <li>
                    {{ form_widget(child) }}
                    {{ form_label(child) }}
                </li>
            {% endfor %}
            </ul>
        {% else %}
            {# just let the choice widget render the select tag #}
            {{ block('choice_widget') }}
        {% endif %}
    {% endspaceless %}
{% endblock %}

Tip

You can further customize the template used to render each child of the choice type. The block to override in that case is named "block name" + _entry_ + "element name" (label, errors or widget) (e.g. to customize the labels of the children of the Shipping widget you'd need to define {% block shipping_entry_label %} ... {% endblock %}).

Note

Make sure the correct widget prefix is used. In this example the name should be shipping_widget (see How to Customize Form Rendering). Further, the main config file should point to the custom form template so that it's used when rendering all forms.

When using Twig this is:

1
2
3
4
# app/config/config.yml
twig:
    form_themes:
        - 'form/fields.html.twig'

For the PHP templating engine, your configuration should look like this:

1
2
3
4
5
6
# app/config/config.yml
framework:
    templating:
        form:
            resources:
                - ':form:fields.html.php'

Using the Field Type

You can now use your custom field type by creating a new instance of the type in one of your forms:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// src/AppBundle/Form/Type/OrderType.php
namespace AppBundle\Form\Type;

use AppBundle\Form\Type\ShippingType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class OrderType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder->add('shippingCode', ShippingType::class, [
            'placeholder' => 'Choose a delivery option',
        ]);
    }
}

But this only works because the ShippingType() is very simple. What if the shipping codes were stored in configuration or in a database? The next section explains how more complex field types solve this problem.

Accessing Services and Config

If you need to access services from your form class, add a __construct() method like normal:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// src/AppBundle/Form/Type/ShippingType.php
namespace AppBundle\Form\Type;

// ...
use Doctrine\ORM\EntityManagerInterface;

class ShippingType extends AbstractType
{
    private $entityManager;

    public function __construct(EntityManagerInterface $entityManager)
    {
        $this->entityManager = $entityManager;
    }

    // use $this->entityManager down anywhere you want ...
}

If you're using the default services.yml configuration (i.e. services from the Form/ are loaded and autoconfigure is enabled), this will already work! See Service Container for more details.

Tip

If you're not using autoconfigure, make sure to tag your service with form.type.

Have fun!

This work, including the code samples, is licensed under a Creative Commons BY-SA 3.0 license.
TOC
    Version