Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions en/controllers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,28 @@ for best results::

.. _controller-middleware:

Using Redirects in Controller Events
====================================

To redirect from within a controller callback method you can use the following::

public function beforeFilter(EventInterface $event): void
{
if (...) {
$event->setResult($this->redirect('/'));

return;
}

...
}

By setting a redirect as event result you let CakePHP know that you don't want any other
component callbacks to run, and that the controller should not handle the action
any further.

As of 4.1.0 you can also raise a ``RedirectException`` to signal a redirect.

Controller Middleware
=====================

Expand Down
2 changes: 1 addition & 1 deletion en/controllers/components.rst
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ To redirect from within a component callback method you can use the following::
...
}

By stopping the event you let CakePHP know that you don't want any other
By setting a redirect as event result you let CakePHP know that you don't want any other
component callbacks to run, and that the controller should not handle the action
any further. As of 4.1.0 you can raise a ``RedirectException`` to signal
a redirect::
Expand Down