You are here

function feeds_tamper_html_entity_decode_form in Feeds Tamper 6

Same name and namespace in other branches
  1. 7 plugins/html_entity_decode.inc \feeds_tamper_html_entity_decode_form()
1 string reference to 'feeds_tamper_html_entity_decode_form'
html_entity_decode.inc in plugins/html_entity_decode.inc

File

plugins/html_entity_decode.inc, line 16

Code

function feeds_tamper_html_entity_decode_form($importer, $element_key, $settings) {
  $form = array();
  $form['html'] = array(
    '#value' => t('Convert all HTML entities such as & and " to & and ".'),
  );
  return $form;
}