Symfony2 API
Class

Symfony\Component\HttpKernel\Event\KernelEvent

class KernelEvent extends Event

Base class for events thrown in the HttpKernel component

Methods

Boolean isPropagationStopped()

Returns whether further event listeners should be triggered.

from Event
stopPropagation()

Stops the propagation of the event to further event listeners.

from Event
setDispatcher(EventDispatcherInterface $dispatcher)

Stores the EventDispatcher that dispatches this Event

from Event
EventDispatcherInterface getDispatcher()

Returns the EventDispatcher that dispatches this Event

from Event
string getName()

Gets the event's name.

from Event
setName(string $name)

Sets the event's name property.

from Event
__construct(HttpKernelInterface $kernel, Request $request, $requestType)

HttpKernelInterface getKernel()

Returns the kernel in which this event was thrown

Request getRequest()

Returns the request the kernel is currently processing

integer getRequestType()

Returns the request type the kernel is currently processing

Details

in Event at line 55
public Boolean isPropagationStopped()

Returns whether further event listeners should be triggered.

Return Value

Boolean Whether propagation was already stopped for this event.

See also

Event::stopPropagation

in Event at line 69
public 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 81
public setDispatcher(EventDispatcherInterface $dispatcher)

Stores the EventDispatcher that dispatches this Event

Parameters

EventDispatcherInterface $dispatcher

in Event at line 93
public EventDispatcherInterface getDispatcher()

Returns the EventDispatcher that dispatches this Event

in Event at line 105
public string getName()

Gets the event's name.

Return Value

string

in Event at line 117
public setName(string $name)

Sets the event's name property.

Parameters

string $name The event name.

at line 46
public __construct(HttpKernelInterface $kernel, Request $request, $requestType)

Parameters

HttpKernelInterface $kernel
Request $request
$requestType

at line 60
public HttpKernelInterface getKernel()

Returns the kernel in which this event was thrown

Return Value

HttpKernelInterface

at line 72
public Request getRequest()

Returns the request the kernel is currently processing

Return Value

Request

at line 85
public integer getRequestType()

Returns the request type the kernel is currently processing

Return Value

integer One of HttpKernelInterface::MASTER_REQUEST and HttpKernelInterface::SUB_REQUEST