public function Idp::setLogoutUrl in SAML Service Provider 4.x
Same name and namespace in other branches
- 8.3 src/Entity/Idp.php \Drupal\saml_sp\Entity\Idp::setLogoutUrl()
- 3.x src/Entity/Idp.php \Drupal\saml_sp\Entity\Idp::setLogoutUrl()
Sets the IdP server's logout URL.
Parameters
string $logout_url: The logout URL.
Overrides IdpInterface::setLogoutUrl
File
- src/
Entity/ Idp.php, line 204
Class
- Idp
- Defines the Idp entity.
Namespace
Drupal\saml_sp\EntityCode
public function setLogoutUrl($logout_url) {
$this->logout_url = $logout_url;
}