You are here

public function KeycloakService::isKeycloakSignOutEnabled in Keycloak OpenID Connect 8

Whether RP (Drupal) initiated Single Sing-Out is enabled.

Return value

bool TRUE, if RP inititated sign out is enabled, FALSE otherwise.

Overrides KeycloakServiceInterface::isKeycloakSignOutEnabled

1 call to KeycloakService::isKeycloakSignOutEnabled()
KeycloakService::getKeycloakSignoutResponse in src/Service/KeycloakService.php
Return a RP (Drupal) initiated single sign-out response.

File

src/Service/KeycloakService.php, line 265

Class

KeycloakService
Keycloak service.

Namespace

Drupal\keycloak\Service

Code

public function isKeycloakSignOutEnabled() {
  return $this->config
    ->get('enabled') && $this->config
    ->get('settings.keycloak_sign_out');
}