You are here

function feeds_tamper_strip_tags_callback in Feeds Tamper 7

Same name and namespace in other branches
  1. 6 plugins/strip_tags.inc \feeds_tamper_strip_tags_callback()
1 string reference to 'feeds_tamper_strip_tags_callback'
strip_tags.inc in plugins/strip_tags.inc

File

plugins/strip_tags.inc, line 33

Code

function feeds_tamper_strip_tags_callback($result, $item_key, $element_key, &$field, $settings, $source) {
  $field = strip_tags($field, $settings['allowed_tags']);
}