diff --git a/mappers/list.inc b/mappers/list.inc new file mode 100644 index 0000000000000000000000000000000000000000..6a8a16878442c11f9bea22a59ef1806c4cc22160 --- /dev/null +++ b/mappers/list.inc @@ -0,0 +1,63 @@ +<?php + +/** + * @file + * On behalf implementation of Feeds mapping API for list.module. + */ + +/** + * Implements hook_feeds_processor_targets_alter(). + * + * @see FeedsProcessor::getMappingTargets() + */ +function list_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_name) { + foreach (field_info_instances($entity_type, $bundle_name) as $name => $instance) { + $info = field_info_field($name); + + switch ($info['type']) { + + case 'list_integer': + case 'list_float': + $targets[$name] = array( + 'name' => check_plain($instance['label']), + 'callback' => 'number_feeds_set_target', + 'description' => t('The @label field of the entity.', array('@label' => $instance['label'])), + ); + break; + + case 'list_boolean': + $targets[$name] = array( + 'name' => check_plain($instance['label']), + 'callback' => 'list_feeds_set_boolean_target', + 'description' => t('The @label field of the entity.', array('@label' => $instance['label'])), + ); + break; + + case 'list_text': + $targets[$name] = array( + 'name' => check_plain($instance['label']), + 'callback' => 'text_feeds_set_target', + 'description' => t('The @label field of the entity.', array('@label' => $instance['label'])), + ); + break; + } + } +} + +/** + * Callback for setting list_boolean fields. + */ +function list_feeds_set_boolean_target(FeedsSource $source, $entity, $target, array $values, array $mapping = array()) { + $field = isset($entity->$target) ? $entity->$target : array(LANGUAGE_NONE => array()); + + foreach ($values as $value) { + + if (is_object($value) && ($value instanceof FeedsElement)) { + $value = $value->getValue(); + } + + $field[LANGUAGE_NONE][] = array('value' => (int) (bool) $value); + } + + $entity->$target = $field; +} diff --git a/mappers/number.inc b/mappers/number.inc index 338d569145ed1685f55ad422e6b43c3ede1b49cd..2b9c436858c1d7380542fafd5df6700db0931ba3 100644 --- a/mappers/number.inc +++ b/mappers/number.inc @@ -12,9 +12,6 @@ */ function number_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_name) { $numeric_types = array( - 'list_integer', - 'list_float', - 'list_boolean', 'number_integer', 'number_decimal', 'number_float', diff --git a/mappers/text.inc b/mappers/text.inc index 235aea3a8a19be91a154ef8ebd606b6a97d387df..89a03ff1645cf813ccb86690a7b3a57a357646ed 100644 --- a/mappers/text.inc +++ b/mappers/text.inc @@ -12,7 +12,6 @@ */ function text_feeds_processor_targets_alter(&$targets, $entity_type, $bundle_name) { $text_types = array( - 'list_text', 'text', 'text_long', 'text_with_summary',