public function Http4xxController::on403 in Drupal 10
Same name and namespace in other branches
- 8 core/modules/system/src/Controller/Http4xxController.php \Drupal\system\Controller\Http4xxController::on403()
- 9 core/modules/system/src/Controller/Http4xxController.php \Drupal\system\Controller\Http4xxController::on403()
The default 403 content.
Return value
array A render array containing the message to display for 403 pages.
File
- core/
modules/ system/ src/ Controller/ Http4xxController.php, line 42
Class
- Http4xxController
- Controller for default HTTP 4xx responses.
Namespace
Drupal\system\ControllerCode
public function on403() {
return [
'#markup' => $this
->t('You are not authorized to access this page.'),
];
}