You are here

function _sf_node_import_body in Salesforce Suite 7

Same name and namespace in other branches
  1. 6.2 sf_node/sf_node.module \_sf_node_import_body()

File

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

Code

function _sf_node_import_body(&$node, $drupal_fieldname, $drupal_field_definition, $sf_data, $sf_fieldname, $sf_field_definition) {
  $node->teaser = node_teaser($sf_data->{$sf_fieldname});
  $node->body = $sf_data->{$sf_fieldname};
}