You are here

function feeds_tamper_copy_form in Feeds Tamper 6

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

File

plugins/copy.inc, line 15

Code

function feeds_tamper_copy_form($importer, $element_key, $settings) {

  // The CSV parser automagically lowercases all sources.
  $is_csv = get_class($importer->parser) === 'FeedsCSVParser';
  $form = $sources = array();
  $source_configs = $importer->parser
    ->getMappingSources();
  foreach ($importer->processor->config['mappings'] as $mapping) {
    $mapsource = $is_csv ? drupal_strtolower($mapping['source']) : $mapping['source'];
    $sources[$mapsource] = isset($source_configs[$mapping['source']]) ? $source_configs[$mapping['source']]['name'] : $mapping['source'];
  }
  $form['to_from'] = array(
    '#title' => t('To or from'),
    '#type' => 'radios',
    '#default_value' => isset($settings['to_from']) ? $settings['to_from'] : 'to',
    '#options' => array(
      'to' => t('To'),
      'from' => t('From'),
    ),
    '#description' => t('Select whether this source value should be copied <em>to</em> another source, or <em>from</em> another source to this one.'),
  );
  $form['source'] = array(
    '#type' => 'radios',
    '#default_value' => isset($settings['source']) ? $settings['source'] : key($sources),
    '#options' => $sources,
    '#title' => t('Source'),
  );
  return $form;
}