This class provides compatibility with dispatcher filters and interacting with the controller layers.
Long term this should just be the controller dispatcher, but for now it will do a bit more than that.
__construct( Cake\Http\ControllerFactory|null $factory null , Cake\Event\EventManager|null $eventManager null , array $filters [] )
Constructor
Cake\Http\ControllerFactory|null $factory optional null Cake\Event\EventManager|null $eventManager optional null $filters optional [] _invoke( Cake\Controller\Controller $controller )
Invoke a controller's action and wrapping methods.
Cake\Controller\Controller $controller Cake\Http\ResponseaddFilter( Cake\Event\EventListenerInterface $filter )
Add a filter to this dispatcher.
The added filter will be attached to the event manager used by this dispatcher.
Cake\Event\EventListenerInterface $filter The filter to connect. Can be any EventListenerInterface. Typically an instance of \Cake\Routing\DispatcherFilter.
dispatch( Cake\Http\ServerRequest $request , Cake\Http\Response $response )
Dispatches a Request & Response
Cake\Http\ServerRequest $request Cake\Http\Response $response Cake\Http\ResponsedispatchEvent( string $name , array|null $data null , object|null $subject null )
Wrapper for creating and dispatching events.
Returns a dispatched event.
$name $data optional null Any value you wish to be transported with this event to it can be read by listeners.
$subject optional null The object that this event applies to ($this by default).
Cake\Event\EventeventManager( Cake\Event\EventManager $eventManager null )
Returns the Cake\Event\EventManager manager instance for this object.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Cake\Event\EventManager $eventManager optional null Cake\Event\EventManagergetEventManager( )
Returns the Cake\Event\EventManager manager instance for this object.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Cake\Event\EventManagersetEventManager( Cake\Event\EventManager $eventManager )
Returns the Cake\Event\EventManager manager instance for this object.
You can use this instance to register any new listeners or callbacks to the object events, or create your own events and trigger them at will.
Cake\Event\EventManager $eventManager
© 2005–2017 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/3.5/class-Cake.Http.ActionDispatcher.html