function saml_sp_clear_request_store in SAML Service Provider 7.3
Same name and namespace in other branches
- 7.2 saml_sp.module \saml_sp_clear_request_store()
clear the stored inbound request ID
1 call to saml_sp_clear_request_store()
- 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 882 - SAML Service Provider
Code
function saml_sp_clear_request_store($inbound_id) {
return db_delete('saml_sp_requests')
->condition('id', $inbound_id)
->execute();
}