You are here

public static function EmailTemplateService::getSubscribedEvents in Lightweight Directory Access Protocol (LDAP) 8.3

Same name and namespace in other branches
  1. 8.4 ldap_authentication/src/Routing/EmailTemplateService.php \Drupal\ldap_authentication\Routing\EmailTemplateService::getSubscribedEvents()

File

ldap_authentication/src/Routing/EmailTemplateService.php, line 88

Class

EmailTemplateService
Class EmailTemplateService.

Namespace

Drupal\ldap_authentication\Routing

Code

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