W3cubDocs

/CakePHP 4.4

Interface EventInterface

Represents the transport class of events across the system. It receives a name, subject and an optional payload. The name can be any string that uniquely identifies the event across the application, while the subject represents the object that the event applies to.

Namespace: Cake\Event

Method Summary

  • getData() public

    Accesses the event data/payload.

  • getName() public

    Returns the name of this event. This is usually used as the event identifier.

  • getResult() public

    The result value of the event listeners.

  • getSubject() public

    Returns the subject of this event.

  • isStopped() public

    Checks if the event is stopped.

  • setData() public

    Assigns a value to the data/payload of this event.

  • setResult() public

    Listeners can attach a result value to the event.

  • stopPropagation() public

    Stops the event from being used anymore.

Method Detail

getData() public

getData(string|null $key = null): mixed|array|null

Accesses the event data/payload.

Parameters

string|null $key optional

The data payload element to return, or null to return all data.

Returns

mixed|array|null

getName() public

getName(): string

Returns the name of this event. This is usually used as the event identifier.

Returns

string

getResult() public

getResult(): mixed

The result value of the event listeners.

Returns

mixed

getSubject() public

getSubject(): object

Returns the subject of this event.

Returns

object

isStopped() public

isStopped(): bool

Checks if the event is stopped.

Returns

bool

setData() public

setData(array|string $key, mixed $value = null): $this

Assigns a value to the data/payload of this event.

Parameters

array|string $key

An array will replace all payload data, and a key will set just that array item.

mixed $value optional

The value to set.

Returns

$this

setResult() public

setResult(mixed $value = null): $this

Listeners can attach a result value to the event.

Parameters

mixed $value optional

The value to set.

Returns

$this

stopPropagation() public

stopPropagation(): void

Stops the event from being used anymore.

Returns

void

© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.4/interface-Cake.Event.EventInterface.html