You are here

function webform_user_login in Webform 6.x

Same name and namespace in other branches
  1. 8.5 webform.module \webform_user_login()

Implements hook_user_login().

File

./webform.module, line 173
Enables the creation of webforms and questionnaires.

Code

function webform_user_login($account) {

  // Notify the storage of this log in.
  \Drupal::entityTypeManager()
    ->getStorage('webform_submission')
    ->userLogin($account);
}