You are here

function salesforce_api_salesforce_field_map_load_by in Salesforce Suite 6.2

3 calls to salesforce_api_salesforce_field_map_load_by()
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().
_sf_notifications_handle_message in sf_notifications/sf_notifications.module
Loop through an array of SObjects from SalesForce and save them according to any existing sf fieldmaps, notification settings, and data.

File

salesforce_api/salesforce_api.module, line 1796
Defines an API that enables modules to interact with the Salesforce server.

Code

function salesforce_api_salesforce_field_map_load_by($conditions) {
  ctools_include('export');
  $result = ctools_export_load_object('salesforce_field_map', 'conditions', $conditions);
  return $result;
}