Button
class Button implements IteratorAggregate, FormInterface
A form button.
Methods
Unsupported method.
Unsupported method.
Unsupported method.
Unsupported method.
Returns the parent form.
Adds or replaces a child to the form.
Returns the child with the given name.
Returns whether a child with the given name exists.
Removes a child from the form.
Returns all children in this group.
Returns the errors of this form.
Updates the form with default data.
Returns the data in the format needed for the underlying object.
Returns the normalized data of the field.
Returns the data transformed by the value transformer.
Returns the extra data.
Returns the form's configuration.
Returns whether the form is submitted.
Returns the name by which the form is identified in forms.
Returns the property path that the form is mapped to.
Returns whether the form and all children are valid.
Returns whether the form is required to be filled out.
Returns whether this form is disabled.
Returns whether the form is empty.
Returns whether the data in the different formats is synchronized.
Returns the data transformation failure, if any.
Initializes the form tree.
Inspects the given request and calls {@link submit()} if the form was submitted.
Submits data to the form, transforms and validates it.
Returns the root of the form tree.
Returns whether the field is the root of the form tree.
Unsupported method.
Unsupported method.
Details
FormInterface
add(FormInterface|string|int $child, string|null $type = null, array $options = array())
Adds or replaces a child to the form.
FormErrorIterator
getErrors(bool $deep = false, bool $flatten = true)
Returns the errors of this form.
bool
isRequired()
Returns whether the form is required to be filled out.
If the form has a parent and the parent is not required, this method will always return false. Otherwise the value set with setRequired() is returned.
bool
isDisabled()
Returns whether this form is disabled.
The content of a disabled form is displayed, but not allowed to be modified. The validation of modified disabled forms should fail.
Forms whose parents are disabled are considered disabled regardless of their own state.
bool
isSynchronized()
Returns whether the data in the different formats is synchronized.
If the data is not synchronized, you can get the transformation failure by calling {@link getTransformationFailure()}.
TransformationFailedException|null
getTransformationFailure()
Returns the data transformation failure, if any.
$this
initialize()
Initializes the form tree.
Should be called on the root form after constructing the tree.
$this
handleRequest(mixed $request = null)
Inspects the given request and calls {@link submit()} if the form was submitted.
Internally, the request is forwarded to the configured {@link RequestHandlerInterface} instance, which determines whether to submit the form or not.