You are here

function feeds_tamper_strip_tags_callback in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 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($source, $item_key, $element_key, &$field, $settings) {
  $field = strip_tags($field, $settings['allowed_tags']);
}