You are here

function feeds_tamper_state_to_abbrev_form in Feeds Tamper 7

1 string reference to 'feeds_tamper_state_to_abbrev_form'
state_to_abbrev.inc in plugins/state_to_abbrev.inc

File

plugins/state_to_abbrev.inc, line 17

Code

function feeds_tamper_state_to_abbrev_form($importer, $element_key, $settings) {
  $form = array();
  $form['help'] = array(
    '#markup' => t('Converts this field from a full state name name string to the two character abbreviation.'),
  );
  return $form;
}