Newer
Older
Alex Barth
committed
<?php
/**
* @file
* On behalf implementation of Feeds mapping API for link.module.
Alex Barth
committed
*/
/**
* Implements hook_feeds_processor_targets_alter().
*
* @see FeedsProcessor::getMappingTargets()
Alex Barth
committed
*/
function link_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);
if ($info['type'] == 'link_field') {
if (array_key_exists('url', $info['columns'])) {
$targets[$name . ':url'] = array(
'name' => t('@name: URL', array('@name' => $instance['label'])),
Alex Barth
committed
'callback' => 'link_feeds_set_target',
'description' => t('The @label field of the entity.', array('@label' => $instance['label'])),
'real_target' => $name,
);
}
if (array_key_exists('title', $info['columns'])) {
$targets[$name . ':title'] = array(
'name' => t('@name: Title', array('@name' => $instance['label'])),
'callback' => 'link_feeds_set_target',
'description' => t('The @label field of the entity.', array('@label' => $instance['label'])),
'real_target' => $name,
Alex Barth
committed
);
}
}
}
}
/**
* Callback for mapping. Here is where the actual mapping happens.
Alex Barth
committed
*
* When the callback is invoked, $target contains the name of the field the
* user has decided to map to and $value contains the value of the feed item
* element the user has picked as a source.
Alex Barth
committed
*/
function link_feeds_set_target($source, $entity, $target, array $values) {
list($field_name, $column) = explode(':', $target);
$field = isset($entity->$field_name) ? $entity->$field_name : array('und' => array());
foreach ($values as $value) {
if (is_object($value) && ($value instanceof FeedsElement)) {
$value = $value->getValue();
if (is_scalar($value)) {
$field['und'][$delta][$column] = (string) $value;
Alex Barth
committed
}