interface FormBuilderInterface implements Iterator, FormBuilderInterface
Methods
EventDispatcherInterface | getEventDispatcher() Returns the event dispatcher used to dispatch form events. | from FormConfigInterface |
string | getName() Returns the name of the form used as HTTP parameter. | from FormConfigInterface |
null|PropertyPathInterface | getPropertyPath() Returns the property path that the form should be mapped to. | from FormConfigInterface |
bool | getMapped() Returns whether the form should be mapped to an element of its parent's data. | from FormConfigInterface |
bool | getByReference() Returns whether the form's data should be modified by reference. | from FormConfigInterface |
bool | getInheritData() Returns whether the form should read and write the data of its parent. | from FormConfigInterface |
bool | getCompound() Returns whether the form is compound. | from FormConfigInterface |
ResolvedFormTypeInterface | getType() Returns the form types used to construct the form. | from FormConfigInterface |
DataTransformerInterface[] | getViewTransformers() Returns the view transformers of the form. | from FormConfigInterface |
DataTransformerInterface[] | getModelTransformers() Returns the model transformers of the form. | from FormConfigInterface |
DataMapperInterface | getDataMapper() Returns the data mapper of the form. | from FormConfigInterface |
bool | getRequired() Returns whether the form is required. | from FormConfigInterface |
bool | getDisabled() Returns whether the form is disabled. | from FormConfigInterface |
bool | getErrorBubbling() Returns whether errors attached to the form will bubble to its parent. | from FormConfigInterface |
mixed | getEmptyData() Returns the data that should be returned when the form is empty. | from FormConfigInterface |
array | getAttributes() Returns additional attributes of the form. | from FormConfigInterface |
bool | hasAttribute(string $name) Returns whether the attribute with the given name exists. | from FormConfigInterface |
mixed | getAttribute(string $name, mixed $default = null) Returns the value of the given attribute. | from FormConfigInterface |
mixed | getData() Returns the initial data of the form. | from FormConfigInterface |
string | getDataClass() Returns the class of the form data or null if the data is scalar or an array. | from FormConfigInterface |
bool | getDataLocked() Returns whether the form's data is locked. | from FormConfigInterface |
FormFactoryInterface | getFormFactory() Returns the form factory used for creating new forms. | from FormConfigInterface |
string | getAction() Returns the target URL of the form. | from FormConfigInterface |
string | getMethod() Returns the HTTP method used by the form. | from FormConfigInterface |
RequestHandlerInterface | getRequestHandler() Returns the request handler used by the form. | from FormConfigInterface |
bool | getAutoInitialize() Returns whether the form should be initialized upon creation. | from FormConfigInterface |
array | getOptions() Returns all options passed during the construction of the form. | from FormConfigInterface |
bool | hasOption(string $name) Returns whether a specific option exists. | from FormConfigInterface |
mixed | getOption(string $name, mixed $default = null) Returns the value of a specific option. | from FormConfigInterface |
FormConfigBuilderInterface | addEventListener(string $eventName, callable $listener, int $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 | addViewTransformer(DataTransformerInterface $viewTransformer, bool $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, bool $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, mixed $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(bool $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 submitted. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setErrorBubbling(bool $errorBubbling) Sets whether errors bubble up to the parent. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setRequired(bool $required) Sets whether this field is required to be filled out when submitted. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setPropertyPath(null|string|PropertyPathInterface $propertyPath) Sets the property path that the form should be mapped to. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setMapped(bool $mapped) Sets whether the form should be mapped to an element of its parent's data. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setByReference(bool $byReference) Sets whether the form's data should be modified by reference. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setInheritData(bool $inheritData) Sets whether the form should read and write the data of its parent. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setCompound(bool $compound) Sets whether the form should be compound. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setType(ResolvedFormTypeInterface $type) Set the types. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setData(mixed $data) Sets the initial data of the form. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setDataLocked(bool $locked) Locks the form's data to the data passed in the configuration. | from FormConfigBuilderInterface |
setFormFactory(FormFactoryInterface $formFactory) Sets the form factory used for creating new forms. | from FormConfigBuilderInterface | |
FormConfigBuilderInterface | setAction(string $action) Sets the target URL of the form. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setMethod(string $method) Sets the HTTP method used by the form. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setRequestHandler(RequestHandlerInterface $requestHandler) Sets the request handler used by the form. | from FormConfigBuilderInterface |
FormConfigBuilderInterface | setAutoInitialize(bool $initialize) Sets whether the form should be initialized automatically. | from FormConfigBuilderInterface |
FormConfigInterface | getFormConfig() Builds and returns the form configuration. | from FormConfigBuilderInterface |
FormBuilderInterface | add(string|int|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. | from FormBuilderInterface |
FormBuilderInterface | create(string $name, string|FormTypeInterface $type = null, array $options = array()) Creates a form builder. | from FormBuilderInterface |
FormBuilderInterface | get(string $name) Returns a child by name. | from FormBuilderInterface |
FormBuilderInterface | remove(string $name) Removes the field with the given name. | from FormBuilderInterface |
bool | has(string $name) Returns whether a field with the given name exists. | from FormBuilderInterface |
array | all() Returns the children. | from FormBuilderInterface |
Form | getForm() Creates the form. | from FormBuilderInterface |
Details
EventDispatcherInterface getEventDispatcher()
Returns the event dispatcher used to dispatch form events.
string getName()
Returns the name of the form used as HTTP parameter.
null|PropertyPathInterface getPropertyPath()
Returns the property path that the form should be mapped to.
bool getMapped()
Returns whether the form should be mapped to an element of its parent's data.
bool getByReference()
Returns whether the form's data should be modified by reference.
bool getInheritData()
Returns whether the form should read and write the data of its parent.
bool getCompound()
Returns whether the form is compound.
This property is independent of whether the form actually has children. A form can be compound and have no children at all, like for example an empty collection form.
ResolvedFormTypeInterface getType()
Returns the form types used to construct the form.
DataTransformerInterface[] getViewTransformers()
Returns the view transformers of the form.
DataTransformerInterface[] getModelTransformers()
Returns the model transformers of the form.
DataMapperInterface getDataMapper()
Returns the data mapper of the form.
bool getRequired()
Returns whether the form is required.
bool getDisabled()
Returns whether the form is disabled.
bool getErrorBubbling()
Returns whether errors attached to the form will bubble to its parent.
mixed getEmptyData()
Returns the data that should be returned when the form is empty.
array getAttributes()
Returns additional attributes of the form.
bool hasAttribute(string $name)
Returns whether the attribute with the given name exists.
mixed getAttribute(string $name, mixed $default = null)
Returns the value of the given attribute.
mixed getData()
Returns the initial data of the form.
string getDataClass()
Returns the class of the form data or null if the data is scalar or an array.
bool getDataLocked()
Returns whether the form's data is locked.
A form with locked data is restricted to the data passed in this configuration. The data can only be modified then by submitting the form.
FormFactoryInterface getFormFactory()
Returns the form factory used for creating new forms.
string getAction()
Returns the target URL of the form.
string getMethod()
Returns the HTTP method used by the form.
RequestHandlerInterface getRequestHandler()
Returns the request handler used by the form.
bool getAutoInitialize()
Returns whether the form should be initialized upon creation.
array getOptions()
Returns all options passed during the construction of the form.
bool hasOption(string $name)
Returns whether a specific option exists.
mixed getOption(string $name, mixed $default = null)
Returns the value of a specific option.
FormConfigBuilderInterface addEventListener(string $eventName, callable $listener, int $priority)
Adds an event listener to an event on this form.
FormConfigBuilderInterface addEventSubscriber(EventSubscriberInterface $subscriber)
Adds an event subscriber for events on this form.
FormConfigBuilderInterface addViewTransformer(DataTransformerInterface $viewTransformer, bool $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.
FormConfigBuilderInterface resetViewTransformers()
Clears the view transformers.
FormConfigBuilderInterface addModelTransformer(DataTransformerInterface $modelTransformer, bool $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.
FormConfigBuilderInterface resetModelTransformers()
Clears the normalization transformers.
FormConfigBuilderInterface setAttribute(string $name, mixed $value)
Sets the value for an attribute.
FormConfigBuilderInterface setAttributes(array $attributes)
Sets the attributes.
FormConfigBuilderInterface setDataMapper(DataMapperInterface $dataMapper = null)
Sets the data mapper used by the form.
FormConfigBuilderInterface setDisabled(bool $disabled)
Set whether the form is disabled.
FormConfigBuilderInterface setEmptyData(mixed $emptyData)
Sets the data used for the client data when no value is submitted.
FormConfigBuilderInterface setErrorBubbling(bool $errorBubbling)
Sets whether errors bubble up to the parent.
FormConfigBuilderInterface setRequired(bool $required)
Sets whether this field is required to be filled out when submitted.
FormConfigBuilderInterface setPropertyPath(null|string|PropertyPathInterface $propertyPath)
Sets the property path that the form should be mapped to.
FormConfigBuilderInterface setMapped(bool $mapped)
Sets whether the form should be mapped to an element of its parent's data.
FormConfigBuilderInterface setByReference(bool $byReference)
Sets whether the form's data should be modified by reference.
FormConfigBuilderInterface setInheritData(bool $inheritData)
Sets whether the form should read and write the data of its parent.
FormConfigBuilderInterface setCompound(bool $compound)
Sets whether the form should be compound.
FormConfigBuilderInterface setType(ResolvedFormTypeInterface $type)
Set the types.
FormConfigBuilderInterface setData(mixed $data)
Sets the initial data of the form.
FormConfigBuilderInterface setDataLocked(bool $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 submitting the form.
setFormFactory(FormFactoryInterface $formFactory)
Sets the form factory used for creating new forms.
FormConfigBuilderInterface setAction(string $action)
Sets the target URL of the form.
FormConfigBuilderInterface setMethod(string $method)
Sets the HTTP method used by the form.
FormConfigBuilderInterface setRequestHandler(RequestHandlerInterface $requestHandler)
Sets the request handler used by the form.
FormConfigBuilderInterface setAutoInitialize(bool $initialize)
Sets whether the form should be initialized automatically.
Should be set to true only for root forms.
FormConfigInterface getFormConfig()
Builds and returns the form configuration.
FormBuilderInterface add(string|int|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.
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.
bool has(string $name)
Returns whether a field with the given name exists.
array all()
Returns the children.
Form getForm()
Creates the form.
Please login to continue.