You are here

function hook_salesforce_api_delete in Salesforce Suite 6.2

Same name and namespace in other branches
  1. 7.2 salesforce_api.api.php \hook_salesforce_api_delete()

Called before Salesforce delete This hook can be used to prevent deletion of Salesforce records entities, but cannot prevent deletion of Drupal entities (

Parameters

object $sfid:

object $map:

string $drupal_id:

Return value

FALSE if the Salesforce record should not be deleted.

See also

hook_salesforce_api_pre_export

hook_nodeapi or hook_user).

1 function implements hook_salesforce_api_delete()

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_delete in sf_queue/sf_queue.module
Implements hook_salesforce_api_delete()
2 invocations of hook_salesforce_api_delete()
sf_node_nodeapi in sf_node/sf_node.module
Implementation of hook_nodeapi().
sf_user_user in sf_user/sf_user.module
Implementation of hook_user().

File

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

Code

function hook_salesforce_api_delete($sfid, $map, $drupal_id) {
}