function hook_salesforce_pull_allow_sf_object in Salesforce Suite 7.3
Prevent a pull from updating/creating an entity.
Parameters
array $sf_object: A Salesforce object array loaded during a pull.
object $mapping_object: The mapping object for this SF Object, or FALSE if none exists.
object $sf_mapping: The mapping that pulled this object in the first place.
Return value
bool FALSE if the entity should be ignored.
Related topics
1 invocation of hook_salesforce_pull_allow_sf_object()
- salesforce_pull_process_updated_records in modules/
salesforce_pull/ salesforce_pull.module  - Process records in the queue.
 
File
- ./
salesforce.api.php, line 170  - These are the hooks that are invoked by the Salesforce core.
 
Code
function hook_salesforce_pull_allow_sf_object($sf_object, $mapping_object, $sf_mapping) {
}