You are here

function feeds_tamper_unique_form in Feeds Tamper 6

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

File

plugins/unique.inc, line 17

Code

function feeds_tamper_unique_form($importer, $element_key, $settings) {
  $form = array();
  $form['unique']['#value'] = t('Makes the elements in a multivalued field unique.');
  return $form;
}