Same name and namespace in other branches
  1. 7.x modules/simpletest/tests/session_test.module \session_test_user_login()
  2. 8.9.x core/modules/system/tests/modules/session_test/session_test.module \session_test_user_login()
  3. 9 core/modules/system/tests/modules/session_test/session_test.module \session_test_user_login()

Implements hook_user_login().

File

core/modules/system/tests/modules/session_test/session_test.module, line 13
Test module.

Code

function session_test_user_login(UserInterface $account) {
  if ($account
    ->getAccountName() == 'session_test_user') {

    // Exit so we can verify that the session was regenerated
    // before hook_user_login() was called.
    exit;
  }

  // Add some data in the session for retrieval testing purpose.
  \Drupal::request()
    ->getSession()
    ->set("session_test_key", "foobar");
}