function Http4xxController::on401

Same name and namespace in other branches
  1. 9 core/modules/system/src/Controller/Http4xxController.php \Drupal\system\Controller\Http4xxController::on401()
  2. 8.9.x core/modules/system/src/Controller/Http4xxController.php \Drupal\system\Controller\Http4xxController::on401()
  3. 10 core/modules/system/src/Controller/Http4xxController.php \Drupal\system\Controller\Http4xxController::on401()

The default 401 content.

Return value

array A render array containing the message to display for 401 pages.

File

core/modules/system/src/Controller/Http4xxController.php, line 30

Class

Http4xxController
Controller for default HTTP 4xx responses.

Namespace

Drupal\system\Controller

Code

public function on401() {
    return [
        '#markup' => $this->t('Log in to access this page.'),
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.