function saml_sp__metadata_url in SAML Service Provider 7.8
Same name and namespace in other branches
- 8.3 saml_sp.module \saml_sp__metadata_url()
- 8.2 saml_sp.module \saml_sp__metadata_url()
- 7.2 saml_sp.module \saml_sp__metadata_url()
- 7.3 saml_sp.module \saml_sp__metadata_url()
- 4.x saml_sp.module \saml_sp__metadata_url()
- 3.x saml_sp.module \saml_sp__metadata_url()
generate a url for the idp metadata
1 call to saml_sp__metadata_url()
- SamlSpConfigSPForm::buildForm in src/
Form/ SamlSpConfigSPForm.php
File
- ./
saml_sp.module, line 153 - SAML Service Provider
Code
function saml_sp__metadata_url() {
return url('saml/metadata.xml', array(
'absolute' => TRUE,
));
}