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