Symfony2 API
Interface

Symfony\Component\Form\FormBuilderInterface

interface FormBuilderInterface implements Traversable, Countable, FormConfigBuilderInterface

Methods

FormConfigBuilderInterface addEventListener(string $eventName, callable $listener, integer $priority)

Adds an event listener to an event on this form.

from FormConfigBuilderInterface
FormConfigBuilderInterface addEventSubscriber(EventSubscriberInterface $subscriber)

Adds an event subscriber for events on this form.

from FormConfigBuilderInterface
FormConfigBuilderInterface addValidator(FormValidatorInterface $validator)

Adds a validator to the form.

from FormConfigBuilderInterface
FormConfigBuilderInterface addViewTransformer(DataTransformerInterface $viewTransformer, Boolean $forcePrepend = false)

Appends / prepends a transformer to the view transformer chain.

from FormConfigBuilderInterface
FormConfigBuilderInterface resetViewTransformers()

Clears the view transformers.

from FormConfigBuilderInterface
FormConfigBuilderInterface addModelTransformer(DataTransformerInterface $modelTransformer, Boolean $forceAppend = false)

Prepends / appends a transformer to the normalization transformer chain.

from FormConfigBuilderInterface
FormConfigBuilderInterface resetModelTransformers()

Clears the normalization transformers.

from FormConfigBuilderInterface
FormConfigBuilderInterface setAttribute(string $name, string $value)

Sets the value for an attribute.

from FormConfigBuilderInterface
FormConfigBuilderInterface setAttributes(array $attributes)

Sets the attributes.

from FormConfigBuilderInterface
FormConfigBuilderInterface setDataMapper(DataMapperInterface $dataMapper = null)

Sets the data mapper used by the form.

from FormConfigBuilderInterface
FormConfigBuilderInterface setDisabled(Boolean $disabled)

Set whether the form is disabled.

from FormConfigBuilderInterface
FormConfigBuilderInterface setEmptyData(mixed $emptyData)

Sets the data used for the client data when no value is bound.

from FormConfigBuilderInterface
FormConfigBuilderInterface setErrorBubbling(Boolean $errorBubbling)

Sets whether errors bubble up to the parent.

from FormConfigBuilderInterface
FormConfigBuilderInterface setRequired(Boolean $required)

Sets whether this field is required to be filled out when bound.

from FormConfigBuilderInterface
FormConfigBuilderInterface setPropertyPath(null|string|PropertyPathInterface $propertyPath)

Sets the property path that the form should be mapped to.

from FormConfigBuilderInterface
FormConfigBuilderInterface setMapped(Boolean $mapped)

Sets whether the form should be mapped to an element of its parent's data.

from FormConfigBuilderInterface
FormConfigBuilderInterface setByReference(Boolean $byReference)

Sets whether the form's data should be modified by reference.

from FormConfigBuilderInterface
FormConfigBuilderInterface setVirtual(Boolean $virtual)

Sets whether the form should be virtual.

from FormConfigBuilderInterface
FormConfigBuilderInterface setCompound(Boolean $compound)

Sets whether the form should be compound.

from FormConfigBuilderInterface
FormConfigBuilderInterface setType(ResolvedFormTypeInterface $type)

Set the types.

from FormConfigBuilderInterface
FormConfigBuilderInterface setData(array $data)

Sets the initial data of the form.

from FormConfigBuilderInterface
FormConfigBuilderInterface setDataLocked(Boolean $locked)

Locks the form's data to the data passed in the configuration.

from FormConfigBuilderInterface
FormConfigInterface getFormConfig()

Builds and returns the form configuration.

from FormConfigBuilderInterface
FormBuilderInterface add(string|FormBuilderInterface $child, string|FormTypeInterface $type = null, array $options = array())

Adds a new field to this group.

FormBuilderInterface create(string $name, string|FormTypeInterface $type = null, array $options = array())

Creates a form builder.

FormBuilderInterface get(string $name)

Returns a child by name.

FormBuilderInterface remove(string $name)

Removes the field with the given name.

Boolean has(string $name)

Returns whether a field with the given name exists.

array all()

Returns the children.

FormFactoryInterface getFormFactory()

Returns the associated form factory.

Form getForm()

Creates the form.

FormBuilderInterface setParent(FormBuilderInterface $parent = null)

Sets the parent builder.

FormBuilderInterface getParent()

Returns the parent builder.

Boolean hasParent()

Returns whether the builder has a parent.

Details

public FormConfigBuilderInterface addEventListener(string $eventName, callable $listener, integer $priority)

Adds an event listener to an event on this form.

Parameters

string $eventName The name of the event to listen to.
callable $listener The listener to execute.
integer $priority The priority of the listener. Listeners with a higher priority are called before listeners with a lower priority.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface addEventSubscriber(EventSubscriberInterface $subscriber)

Adds an event subscriber for events on this form.

Parameters

EventSubscriberInterface $subscriber The subscriber to attach.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface addValidator(FormValidatorInterface $validator)

Adds a validator to the form.

Parameters

FormValidatorInterface $validator The validator.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface addViewTransformer(DataTransformerInterface $viewTransformer, Boolean $forcePrepend = false)

Appends / prepends a transformer to the view transformer chain.

The transform method of the transformer is used to convert data from the
normalized to the view format.
The reverseTransform method of the transformer is used to convert from the
view to the normalized format.

Parameters

DataTransformerInterface $viewTransformer
Boolean $forcePrepend if set to true, prepend instead of appending

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface resetViewTransformers()

Clears the view transformers.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface addModelTransformer(DataTransformerInterface $modelTransformer, Boolean $forceAppend = false)

Prepends / appends a transformer to the normalization transformer chain.

The transform method of the transformer is used to convert data from the
model to the normalized format.
The reverseTransform method of the transformer is used to convert from the
normalized to the model format.

Parameters

DataTransformerInterface $modelTransformer
Boolean $forceAppend if set to true, append instead of prepending

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface resetModelTransformers()

Clears the normalization transformers.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setAttribute(string $name, string $value)

Sets the value for an attribute.

Parameters

string $name The name of the attribute
string $value The value of the attribute

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setAttributes(array $attributes)

Sets the attributes.

Parameters

array $attributes The attributes.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setDataMapper(DataMapperInterface $dataMapper = null)

Sets the data mapper used by the form.

Parameters

DataMapperInterface $dataMapper

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setDisabled(Boolean $disabled)

Set whether the form is disabled.

Parameters

Boolean $disabled Whether the form is disabled

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setEmptyData(mixed $emptyData)

Sets the data used for the client data when no value is bound.

Parameters

mixed $emptyData The empty data.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setErrorBubbling(Boolean $errorBubbling)

Sets whether errors bubble up to the parent.

Parameters

Boolean $errorBubbling

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setRequired(Boolean $required)

Sets whether this field is required to be filled out when bound.

Parameters

Boolean $required

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setPropertyPath(null|string|PropertyPathInterface $propertyPath)

Sets the property path that the form should be mapped to.

Parameters

null|string|PropertyPathInterface $propertyPath The property path or null if the path should be set automatically based on the form's name.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setMapped(Boolean $mapped)

Sets whether the form should be mapped to an element of its parent's data.

Parameters

Boolean $mapped Whether the form should be mapped.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setByReference(Boolean $byReference)

Sets whether the form's data should be modified by reference.

Parameters

Boolean $byReference Whether the data should be modified by reference.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setVirtual(Boolean $virtual)

Sets whether the form should be virtual.

Parameters

Boolean $virtual Whether the form should be virtual.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setCompound(Boolean $compound)

Sets whether the form should be compound.

Parameters

Boolean $compound Whether the form should be compound.

Return Value

FormConfigBuilderInterface The configuration object.

See also

FormConfigInterface::getCompound()

public FormConfigBuilderInterface setType(ResolvedFormTypeInterface $type)

Set the types.

Parameters

ResolvedFormTypeInterface $type The type of the form.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setData(array $data)

Sets the initial data of the form.

Parameters

array $data The data of the form in application format.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigBuilderInterface setDataLocked(Boolean $locked)

Locks the form's data to the data passed in the configuration.

A form with locked data is restricted to the data passed in
this configuration. The data can only be modified then by
binding the form.

Parameters

Boolean $locked Whether to lock the default data.

Return Value

FormConfigBuilderInterface The configuration object.

public FormConfigInterface getFormConfig()

Builds and returns the form configuration.

Return Value

FormConfigInterface

at line 32
public FormBuilderInterface add(string|FormBuilderInterface $child, string|FormTypeInterface $type = null, array $options = array())

Adds a new field to this group.

A field must have a unique name within
the group. Otherwise the existing field is overwritten.

If you add a nested group, this group should also be represented in the
object hierarchy.

Parameters

string|FormBuilderInterface $child
string|FormTypeInterface $type
array $options

Return Value

FormBuilderInterface The builder object.

at line 43
public FormBuilderInterface create(string $name, string|FormTypeInterface $type = null, array $options = array())

Creates a form builder.

Parameters

string $name The name of the form or the name of the property
string|FormTypeInterface $type The type of the form or null if name is a property
array $options The options

Return Value

FormBuilderInterface The created builder.

at line 54
public FormBuilderInterface get(string $name)

Returns a child by name.

Parameters

string $name The name of the child

Return Value

FormBuilderInterface The builder for the child

Exceptions

FormException if the given child does not exist

at line 62
public FormBuilderInterface remove(string $name)

Removes the field with the given name.

Parameters

string $name

Return Value

FormBuilderInterface The builder object.

at line 71
public Boolean has(string $name)

Returns whether a field with the given name exists.

Parameters

string $name

Return Value

Boolean

at line 78
public array all()

Returns the children.

Return Value

array

at line 85
public FormFactoryInterface getFormFactory()

Returns the associated form factory.

Return Value

FormFactoryInterface The factory

at line 92
public Form getForm()

Creates the form.

Return Value

Form The form

at line 101
public FormBuilderInterface setParent(FormBuilderInterface $parent = null)

Sets the parent builder.

Parameters

FormBuilderInterface $parent The parent builder

Return Value

FormBuilderInterface The builder object.

at line 108
public FormBuilderInterface getParent()

Returns the parent builder.

Return Value

FormBuilderInterface The parent builder

at line 115
public Boolean hasParent()

Returns whether the builder has a parent.

Return Value

Boolean