class PreloadedExtension implements FormExtensionInterface
A form extension with preloaded types, type extensions and type guessers.
Methods
__construct(array $types, array $typeExtensions, FormTypeGuesserInterface $typeGuesser = null) Creates a new preloaded extension. | ||
FormTypeInterface | getType(string $name) Returns a type by name. | |
bool | hasType(string $name) Returns whether the given type is supported. | |
FormTypeExtensionInterface[] | getTypeExtensions(string $name) Returns the extensions for the given type. | |
bool | hasTypeExtensions(string $name) Returns whether this extension provides type extensions for the given type. | |
FormTypeGuesserInterface|null | getTypeGuesser() Returns the type guesser provided by this extension. |
Details
__construct(array $types, array $typeExtensions, FormTypeGuesserInterface $typeGuesser = null)
Creates a new preloaded extension.
FormTypeInterface getType(string $name)
Returns a type by name.
bool hasType(string $name)
Returns whether the given type is supported.
FormTypeExtensionInterface[] getTypeExtensions(string $name)
Returns the extensions for the given type.
bool hasTypeExtensions(string $name)
Returns whether this extension provides type extensions for the given type.
FormTypeGuesserInterface|null getTypeGuesser()
Returns the type guesser provided by this extension.
Please login to continue.