function hook_salesforce_api_post_unlink in Salesforce Suite 7.2
Same name and namespace in other branches
- 6.2 hooks.php \hook_salesforce_api_post_unlink()
Called after a link between Drupal and SF objects is removed. $args is the array of ids which were provided to salesforce_api_id_unlink().
See also
salesforce_api_id_unlink() for full explanation of arguments.
2 functions implement hook_salesforce_api_post_unlink()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- sf_entity_salesforce_api_post_unlink in sf_entity/
sf_entity.module - Implements hook_salesforce_api_post_unlink(). Flushes the entity cache for a given entity when it has been unlinked.
- sf_queue_salesforce_api_post_unlink in sf_queue/
sf_queue.module - Implements hook_salesforce_api_post_unlink(). Change "updates" to "inserts" and remove sfid when objects are unlinked.
1 invocation of hook_salesforce_api_post_unlink()
- salesforce_api_id_unlink in salesforce_api/
salesforce_api.module
File
- ./
salesforce_api.api.php, line 351 - These are the hooks that are invoked by the Salesforce core.
Code
function hook_salesforce_api_post_unlink($args) {
}