FormEvent
class FormEvent extends Event
Methods
Returns whether further event listeners should be triggered.
Stores the EventDispatcher that dispatches this Event
Returns the EventDispatcher that dispatches this Event
Returns the form at the source of the event.
Returns the data associated with this event.
Allows updating with some filtered data.
Details
in Event at line line 55
Boolean
isPropagationStopped()
Returns whether further event listeners should be triggered.
in Event at line line 69
stopPropagation()
Stops the propagation of the event to further event listeners.
If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().
in Event at line line 81
setDispatcher(EventDispatcherInterface $dispatcher)
Stores the EventDispatcher that dispatches this Event
in Event at line line 93
EventDispatcherInterface
getDispatcher()
Returns the EventDispatcher that dispatches this Event
in Event at line line 105
string
getName()
Gets the event's name.
in Event at line line 117
setName(string $name)
Sets the event's name property.
at line line 30
__construct(FormInterface $form, mixed $data)
Constructs an event.
at line line 41
FormInterface
getForm()
Returns the form at the source of the event.
at line line 51
mixed
getData()
Returns the data associated with this event.
at line line 61
setData(mixed $data)
Allows updating with some filtered data.