FormConfigBuilder::getEmptyData()

mixed getEmptyData() Returns the data that should be returned when the form is empty. Return Value mixed The data returned if the form is empty

FormConfigBuilder::getDisabled()

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

FormConfigBuilder::getDataMapper()

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

FormConfigBuilder::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

FormConfigBuilder::getDataClass()

string getDataClass() Returns the class of the form data or null if the data is scalar or an array. Return Value string The data class or null

FormConfigBuilder::getData()

mixed getData() Returns the initial data of the form. Return Value mixed The initial form data

FormConfigBuilder::getCompound()

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. Return Value bool Whether the form is compound

FormConfigBuilder::getByReference()

bool getByReference() Returns whether the form's data should be modified by reference. Return Value bool Whether to modify the form's data by reference

FormConfigBuilder::getAutoInitialize()

bool getAutoInitialize() Returns whether the form should be initialized upon creation. Return Value bool Returns true if the form should be initialized when created, false otherwise.

FormConfigBuilder::getAttributes()

array getAttributes() Returns additional attributes of the form. Return Value array An array of key-value combinations