You are here

function feeds_tamper_html_entity_encode_form in Feeds Tamper 6

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

File

plugins/html_entity_encode.inc, line 16

Code

function feeds_tamper_html_entity_encode_form($importer, $element_key, $settings) {
  $form = array();
  $form['html'] = array(
    '#value' => t('This will convert all HTML special characters such as > and & to > and &apm;.'),
  );
  return $form;
}