You are here

function addressfield_set_target in Address Field 7

Callback for hook_feeds_processor_targets_alter().

Parameters

$source: Field mapper source settings.

$entity: An entity object, for instance a node object.

$target: A string identifying the target on the node.

$values: The value to populate the target with.

array $mapping: Associative array of the mapping settings from the per mapping configuration form.

1 string reference to 'addressfield_set_target'
addressfield_feeds_processor_targets_alter in ./addressfield.feeds.inc
Implements hook_feeds_processor_targets_alter().

File

./addressfield.feeds.inc, line 43
Integration with the Feeds module.

Code

function addressfield_set_target($source, $entity, $target, $values, $mapping) {
  $language = $mapping['language'];
  list($field_name, $sub_field) = explode(':', $target, 2);

  // Field info and instance are required for setting default values.
  $entity_type = $source->importer->processor
    ->entityType();
  list(, , $bundle_name) = entity_extract_ids($entity_type, $entity);
  $info = field_info_field($field_name);
  $instance = field_info_instance($entity_type, $field_name, $bundle_name);

  // Convert the values into an array if it isn't one already to correspond to
  // Drupal's handling of field value arrays.
  if (!is_array($values)) {
    $values = array(
      $values,
    );
  }

  // If the field is already set on the given entity, update the existing value
  // array. Otherwise start with a fresh field value array.
  $field = isset($entity->{$field_name}) ? $entity->{$field_name} : array();

  // Loop over the field values array...
  foreach ($values as $delta => $value) {

    // Set defaults for new values.
    if (!isset($field[$language][$delta])) {
      $field[$language][$delta] = addressfield_default_values($info, $instance);
    }
    $field[$language][$delta][$sub_field] = $value;
  }
  $entity->{$field_name} = $field;
}