You are here

function hook_salesforce_api_post_unlink in Salesforce Suite 6.2

Same name and namespace in other branches
  1. 7.2 salesforce_api.api.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.

1 function implements 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_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
Removes a link between a Salesforce record and a Drupal object. Arguments correspond to the columns in the salesforce_object_map table

File

./hooks.php, line 322
These are the hooks that are invoked by the Salesforce core.

Code

function hook_salesforce_api_post_unlink($args) {
}