You are here

session_test.module in Zircon Profile 8

File

core/modules/system/tests/modules/session_test/session_test.module
View source
<?php

/**
 * Implements hook_user_login().
 */
function session_test_user_login($account) {
  if ($account
    ->getUsername() == '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");
}

Functions

Namesort descending Description
session_test_user_login Implements hook_user_login().