Copied!

MapApplicationWorkflowFormEvent

MapApplicationWorkflowFormEvent.php : 14
Extends Event

Event is the base class for classes containing event data.

This class contains no event data. It is used by events that do not pass state information to an event handler when an event is raised.

You can call the method stopPropagation() to abort the execution of further listeners in your event listener.

Methods

public__construct()

MapApplicationWorkflowFormEvent.php : 28
public __construct(string $state[, array<string, mixed>|object|null $data = null ][, FormInterface|null $form = null ])

Parameters

Name Type Default value Description
$state string - -
$data array<string, mixed>|object|null null -
$form FormInterface|null null -

publicgetData()

MapApplicationWorkflowFormEvent.php : 46
public getData() : array<string, mixed>|object|null

Return values

array<string, mixed>|object|null

publicgetForm()

MapApplicationWorkflowFormEvent.php : 51
public getForm() : FormInterface|null

Return values

FormInterface|null

publicgetState()

MapApplicationWorkflowFormEvent.php : 38
public getState() : string

Return values

string

publicisPropagationStopped()

Event.php : 38
public isPropagationStopped() : bool

Return values

bool

publicsetForm()

MapApplicationWorkflowFormEvent.php : 56
public setForm(FormInterface|null $form) : void

Parameters

Name Type Default value Description
$form FormInterface|null - -

publicstopPropagation()

Event.php : 50

Stops the propagation of the event to further event listeners.

public stopPropagation() : void

If multiple event listeners are connected to the same event, no further event listener will be triggered once any trigger calls stopPropagation().