You are here

function _saml_sp__default_idp in SAML Service Provider 7

Same name and namespace in other branches
  1. 7.8 saml_sp.module \_saml_sp__default_idp()
  2. 7.2 saml_sp.module \_saml_sp__default_idp()
  3. 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 342
SAML Service Provider

Code

function _saml_sp__default_idp() {
  return (object) array(
    'name' => '',
    'machine_name' => '',
    // If the app-name is NULL, the global app-name will be used instead.
    'app_name' => NULL,
    'login_url' => '',
    'x509_cert' => '',
  );
}