You are here

public function SessionTestController::get in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php \Drupal\session_test\Controller\SessionTestController::get()
  2. 9 core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php \Drupal\session_test\Controller\SessionTestController::get()

Prints the stored session value to the screen.

Return value

string A notification message.

1 string reference to 'SessionTestController::get'
session_test.routing.yml in core/modules/system/tests/modules/session_test/session_test.routing.yml
core/modules/system/tests/modules/session_test/session_test.routing.yml

File

core/modules/system/tests/modules/session_test/src/Controller/SessionTestController.php, line 22

Class

SessionTestController
Controller providing page callbacks for the action admin interface.

Namespace

Drupal\session_test\Controller

Code

public function get() {
  return empty($_SESSION['session_test_value']) ? [] : [
    '#markup' => $this
      ->t('The current value of the stored session variable is: %val', [
      '%val' => $_SESSION['session_test_value'],
    ]),
  ];
}