function _saml_sp__default_idp in SAML Service Provider 7.2
Same name and namespace in other branches
- 7.8 saml_sp.module \_saml_sp__default_idp()
- 7 saml_sp.module \_saml_sp__default_idp()
- 7.3 saml_sp.module \_saml_sp__default_idp()
Get a default IDP object.
1 call to _saml_sp__default_idp()
- saml_sp__configure_idp_form in ./
saml_sp.admin.inc - Configure or add a SAML IDP.
File
- ./
saml_sp.module, line 708 - SAML Service Provider
Code
function _saml_sp__default_idp() {
return (object) array(
'name' => '',
'machine_name' => '',
'nameid_field' => 'mail',
// If the app-name is NULL, the global app-name will be used instead.
'app_name' => NULL,
'login_url' => '',
'logout_url' => '',
'x509_certs' => array(),
'entity_id' => '',
'authn_context_class_ref' => 'PPT',
);
}