function saml_sp__get_tracked_request in SAML Service Provider 7.2
Same name and namespace in other branches
- 8.3 saml_sp.module \saml_sp__get_tracked_request()
- 8.2 saml_sp.module \saml_sp__get_tracked_request()
- 7.8 saml_sp.module \saml_sp__get_tracked_request()
- 7 saml_sp.module \saml_sp__get_tracked_request()
- 7.3 saml_sp.module \saml_sp__get_tracked_request()
- 4.x saml_sp.module \saml_sp__get_tracked_request()
- 3.x saml_sp.module \saml_sp__get_tracked_request()
Get the IDP and callback from a tracked request.
Parameters
String $id: The unique ID of an outbound request.
Return value
Array|FALSE An array of tracked data, giving the keys:
- id The original outbound ID.
- idp The machine name of the IDP.
- callback The function to invoke on authentication.
1 call to saml_sp__get_tracked_request()
- saml_sp__endpoint in ./
saml_sp.pages.inc - Page callback to complete the SAML authentication process. This is the consumer endpoint for all SAML authentication requests.
File
- ./
saml_sp.module, line 693 - SAML Service Provider
Code
function saml_sp__get_tracked_request($id) {
if ($data = saml_sp_get_request_store($id)) {
return $data;
}
return FALSE;
}