FormConfigInterface::getInheritData()

bool getInheritData() Returns whether the form should read and write the data of its parent. Return Value bool Whether the form should inherit its parent's data

FormConfigInterface::getMethod()

string getMethod() Returns the HTTP method used by the form. Return Value string The HTTP method of the form

FormConfigInterface::getFormFactory()

FormFactoryInterface getFormFactory() Returns the form factory used for creating new forms. Return Value FormFactoryInterface The form factory

FormConfigInterface::getName()

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

FormConfigInterface::getModelTransformers()

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

FormConfigInterface::getDataLocked()

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. Return Value bool Whether the data is locked

FormConfigInterface::getDataMapper()

DataMapperInterface getDataMapper() Returns the data mapper of the form. Return Value DataMapperInterface The data mapper

FormConfigInterface::getDisabled()

bool getDisabled() Returns whether the form is disabled. Return Value bool Whether the form is disabled

FormConfigInterface::getEventDispatcher()

EventDispatcherInterface getEventDispatcher() Returns the event dispatcher used to dispatch form events. Return Value EventDispatcherInterface The dispatcher

FormConfigInterface::getErrorBubbling()

bool getErrorBubbling() Returns whether errors attached to the form will bubble to its parent. Return Value bool Whether errors will bubble up