FormConfigInterface::getViewTransformers()

DataTransformerInterface[] getViewTransformers() Returns the view transformers of the form. Return Value DataTransformerInterface[] An array of {@link DataTransformerInterface} instances

FormConfigInterface::getType()

ResolvedFormTypeInterface getType() Returns the form types used to construct the form. Return Value ResolvedFormTypeInterface The form's type

FormConfigInterface::hasAttribute()

bool hasAttribute(string $name) Returns whether the attribute with the given name exists. Parameters string $name The attribute name Return Value bool Whether the attribute exists

FormConfigInterface::getRequestHandler()

RequestHandlerInterface getRequestHandler() Returns the request handler used by the form. Return Value RequestHandlerInterface The request handler

FormConfigInterface::hasOption()

bool hasOption(string $name) Returns whether a specific option exists. Parameters string $name The option name, Return Value bool Whether the option exists

FormConfigInterface::getRequired()

bool getRequired() Returns whether the form is required. Return Value bool Whether the form is required

FormConfigInterface::getPropertyPath()

null|PropertyPathInterface getPropertyPath() Returns the property path that the form should be mapped to. Return Value null|PropertyPathInterface The property path

FormConfigInterface::getOptions()

array getOptions() Returns all options passed during the construction of the form. Return Value array The passed options

FormConfigInterface::getOption()

mixed getOption(string $name, mixed $default = null) Returns the value of a specific option. Parameters string $name The option name mixed $default The value returned if the option does not exist Return Value mixed The option value

FormConfigInterface::getName()

string getName() Returns the name of the form used as HTTP parameter. Return Value string The form name