You are here

function sf_entity_entity_insert in Salesforce Suite 7.2

Same name and namespace in other branches
  1. 7 sf_entity/sf_entity.module \sf_entity_entity_insert()

Implements hook_entity_insert(). Exports an entity on initial save if the fieldmap is configured accordingly.

File

sf_entity/sf_entity.module, line 231
Integrates fieldable entities with the Salesforce API.

Code

function sf_entity_entity_insert($entity, $type) {
  sf_entity_save($entity, $type, 'insert');
}