You are here

public function Idp::setLoginUrl in SAML Service Provider 3.x

Same name and namespace in other branches
  1. 8.3 src/Entity/Idp.php \Drupal\saml_sp\Entity\Idp::setLoginUrl()
  2. 4.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\Entity

Code

public function setLoginUrl($login_url) {
  $this->login_url = $login_url;
}