You are here

public function SamlSPAuth::setAuthCallback in SAML Service Provider 3.x

Same name and namespace in other branches
  1. 8.3 src/SAML/SamlSPAuth.php \Drupal\saml_sp\SAML\SamlSPAuth::setAuthCallback()
  2. 8.2 src/SAML/SamlSPAuth.php \Drupal\saml_sp\SAML\SamlSPAuth::setAuthCallback()
  3. 4.x src/SAML/SamlSPAuth.php \Drupal\saml_sp\SAML\SamlSPAuth::setAuthCallback()

Set the auth callback for after the response is returned.

Parameters

string $callback: The name of the callback function.

File

src/SAML/SamlSPAuth.php, line 48

Class

SamlSPAuth
Handles the authentication.

Namespace

Drupal\saml_sp\SAML

Code

public function setAuthCallback($callback) {
  $this->authCallback = $callback;
}