You are here

function _feed_import_base_compare_taxonomy_term_reference_field in Feed Import 8

Same name and namespace in other branches
  1. 7.3 feed_import_base/feed_import_base.module \_feed_import_base_compare_taxonomy_term_reference_field()

Field compare callback for taxonomy:taxonomy_term_reference.

1 string reference to '_feed_import_base_compare_taxonomy_term_reference_field'
feed_import_base_feed_import_field_compare_functions in feed_import_base/feed_import_base.module
Implements hook_feed_import_field_compare_functions().

File

feed_import_base/feed_import_base.module, line 633
Basic settings for feed import base module

Code

function _feed_import_base_compare_taxonomy_term_reference_field(&$new, &$current) {
  return $new['tid'] == $current['tid'];
}