public function SamlSPAuth::setAuthCallback in SAML Service Provider 4.x
Same name and namespace in other branches
- 8.3 src/SAML/SamlSPAuth.php \Drupal\saml_sp\SAML\SamlSPAuth::setAuthCallback()
- 8.2 src/SAML/SamlSPAuth.php \Drupal\saml_sp\SAML\SamlSPAuth::setAuthCallback()
- 3.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\SAMLCode
public function setAuthCallback($callback) {
$this->authCallback = $callback;
}