You are here

function saml_sp__metadata_url in SAML Service Provider 7.3

Same name and namespace in other branches
  1. 8.3 saml_sp.module \saml_sp__metadata_url()
  2. 8.2 saml_sp.module \saml_sp__metadata_url()
  3. 7.8 saml_sp.module \saml_sp__metadata_url()
  4. 7.2 saml_sp.module \saml_sp__metadata_url()
  5. 4.x saml_sp.module \saml_sp__metadata_url()
  6. 3.x saml_sp.module \saml_sp__metadata_url()

generate a url for the idp metadata

1 call to saml_sp__metadata_url()
saml_sp__admin_config in ./saml_sp.admin.inc
configure this SAML Service Provider

File

./saml_sp.module, line 195
SAML Service Provider

Code

function saml_sp__metadata_url() {
  return url('saml/metadata.xml', array(
    'absolute' => TRUE,
  ));
}