You are here

function feeds_tamper_country_to_code_form in Feeds Tamper 7

1 string reference to 'feeds_tamper_country_to_code_form'
country_to_code.inc in plugins/country_to_code.inc

File

plugins/country_to_code.inc, line 17

Code

function feeds_tamper_country_to_code_form($importer, $element_key, $settings) {
  $form = array();
  $form['help'] = array(
    '#markup' => t('Converts this field from a country name string to the two character ISO 3166-1 alpha-2 code.'),
  );
  return $form;
}