public function DefaultExceptionHtmlSubscriber::on403 in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/EventSubscriber/DefaultExceptionHtmlSubscriber.php \Drupal\Core\EventSubscriber\DefaultExceptionHtmlSubscriber::on403()
Handles a 403 error for HTML.
Parameters
\Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent $event: The event to process.
1 method overrides DefaultExceptionHtmlSubscriber::on403()
- CustomPageExceptionHtmlSubscriber::on403 in core/
lib/ Drupal/ Core/ EventSubscriber/ CustomPageExceptionHtmlSubscriber.php - Handles a 403 error for HTML.
File
- core/
lib/ Drupal/ Core/ EventSubscriber/ DefaultExceptionHtmlSubscriber.php, line 95 - Contains \Drupal\Core\EventSubscriber\DefaultExceptionHtmlSubscriber.
Class
- DefaultExceptionHtmlSubscriber
- Exception subscriber for handling core default HTML error pages.
Namespace
Drupal\Core\EventSubscriberCode
public function on403(GetResponseForExceptionEvent $event) {
$this
->makeSubrequest($event, Url::fromRoute('system.403')
->toString(), Response::HTTP_FORBIDDEN);
}