function saml_sp__load_all_idps in SAML Service Provider 8.2
Same name and namespace in other branches
- 8.3 saml_sp.module \saml_sp__load_all_idps()
- 7.8 saml_sp.module \saml_sp__load_all_idps()
- 7 saml_sp.module \saml_sp__load_all_idps()
- 7.2 saml_sp.module \saml_sp__load_all_idps()
- 7.3 saml_sp.module \saml_sp__load_all_idps()
- 4.x saml_sp.module \saml_sp__load_all_idps()
- 3.x saml_sp.module \saml_sp__load_all_idps()
Load all the registered IDPs.
Return value
Array An array of IDP objects, keyed by the machine name.
3 calls to saml_sp__load_all_idps()
- SamlSPAuth::login in src/
SAML/ SamlSPAuth.php - Initiates the SSO process.
- SamlSpDrupalLoginConfig::buildForm in modules/
saml_sp_drupal_login/ src/ Form/ SamlSpDrupalLoginConfig.php - Form constructor.
- saml_sp_drupal_login_form_user_login_form_alter in modules/
saml_sp_drupal_login/ saml_sp_drupal_login.module
File
- ./
saml_sp.module, line 87 - SAML Service Provider
Code
function saml_sp__load_all_idps() {
$result = entity_load_multiple('idp');
return $result;
}