You are here

public static function LdapSsoBootSubscriber::getSubscribedEvents in LDAP Single Sign On 8

Same name and namespace in other branches
  1. 8.4 src/LdapSsoBootSubscriber.php \Drupal\ldap_sso\LdapSsoBootSubscriber::getSubscribedEvents()

File

src/LdapSsoBootSubscriber.php, line 106

Class

LdapSsoBootSubscriber
Provides the automated single sign-on provider.

Namespace

Drupal\ldap_sso

Code

public static function getSubscribedEvents() {
  $events[KernelEvents::REQUEST][] = [
    'checkSsoLoad',
    20,
  ];
  return $events;
}