mediatekformation

SubmitEvent extends FormEvent
in package

This event is dispatched just before the Form::submit() method transforms back the normalized data to the model and view data.

It can be used to change data from the normalized representation of the data.

Tags
final

since Symfony 4.4

Table of Contents

$data  : mixed
$form  : mixed
$propagationStopped  : mixed
__construct()  : mixed
getData()  : mixed
Returns the data associated with this event.
getForm()  : FormInterface
Returns the form at the source of the event.
isPropagationStopped()  : bool
setData()  : mixed
Allows updating with some filtered data.
stopPropagation()  : mixed

Properties

$propagationStopped

private mixed $propagationStopped = false

Methods

getData()

Returns the data associated with this event.

public getData() : mixed
Return values
mixed

isPropagationStopped()

public isPropagationStopped() : bool
Tags
deprecated

since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" instead

Return values
bool

Whether propagation was already stopped for this event

setData()

Allows updating with some filtered data.

public setData(mixed $data) : mixed
Parameters
$data : mixed
Return values
mixed

stopPropagation()

public stopPropagation() : mixed
Tags
deprecated

since Symfony 4.3, use "Symfony\Contracts\EventDispatcher\Event" instead

Return values
mixed

Search results