diff --git a/feeds_ui/feeds_ui.admin.inc b/feeds_ui/feeds_ui.admin.inc index 9eca7ac746f8a1b84e3629fbd6222429d4fe8974..c2caa878154f5b5ceb33615900f6a210efdaaa0e 100644 --- a/feeds_ui/feeds_ui.admin.inc +++ b/feeds_ui/feeds_ui.admin.inc @@ -499,9 +499,27 @@ function feeds_ui_mapping_form(&$form_state, $importer) { // Some parsers do not define mapping sources but let them define on the fly. if ($sources = $importer->parser->getMappingSources()) { $source_options = _feeds_ui_format_options($sources); + foreach ($sources as $k => $source) { + // @todo: make format homogenous. + $legend['sources'][$k]['name']['#value'] = is_array($source) ? $source['name'] : $source; + $legend['sources'][$k]['description']['#value'] = (is_array($source) && !empty($source['description'])) ? $source['description'] : ''; + } } $targets = $importer->processor->getMappingTargets(); $target_options = _feeds_ui_format_options($targets); + foreach ($targets as $k => $target) { + $legend['targets'][$k]['name']['#value'] = empty($target['name']) ? $k : $target['name']; + $legend['targets'][$k]['description']['#value'] = empty($target['description']) ? '' : $target['description']; + } + + $form['legendset'] = array( + '#type' => 'fieldset', + '#title' => t('Legend'), + '#collapsible' => TRUE, + '#collapsed' => TRUE, + '#tree' => TRUE, + ); + $form['legendset']['legend'] = $legend; // Add unique and remove forms to mappings. $mappings = $importer->processor->getMappings(); @@ -741,6 +759,7 @@ function theme_feeds_ui_container($container) { */ function theme_feeds_ui_mapping_form($form) { + // Build the actual mapping table. $header = array( t('Source'), t('Target'), @@ -774,6 +793,36 @@ function theme_feeds_ui_mapping_form($form) { ); $output = '<div class="help feeds-admin-ui""'. drupal_render($form['help']) .'</div>'; $output .= theme('table', $header, $rows); + + // Build the help table that explains available sources. + $rows = array(); + foreach (element_children($form['legendset']['legend']['sources']) as $k) { + $rows[] = array( + drupal_render($form['legendset']['legend']['sources'][$k]['name']), + drupal_render($form['legendset']['legend']['sources'][$k]['description']), + ); + } + $legend = '<h3>'. t('Sources') .'</h3>'; + $legend .= theme('table', array(t('Name'), t('Description')), $rows); + + // Build the help table that explains available targets. + $rows = array(); + foreach (element_children($form['legendset']['legend']['targets']) as $k) { + $rows[] = array( + drupal_render($form['legendset']['legend']['targets'][$k]['name']), + drupal_render($form['legendset']['legend']['targets'][$k]['description']), + ); + } + $legend .= '<h3>'. t('Targets') .'</h3>'; + $legend .= theme('table', array(t('Name'), t('Description')), $rows); + + // Stick tables into collapsible fieldset. + $form['legendset']['legend'] = array( + '#value' => '<div>'. $legend .'</div>', + ); + + $output .= drupal_render($form['legendset']); + $output .= drupal_render($form); return $output; } \ No newline at end of file diff --git a/mappers/content.inc b/mappers/content.inc index 4ef911f6d0eec5b34017cd490f721b3b279f1b36..8b7ddf85e6652bd8cce3cc9965549aea5e7dca9d 100644 --- a/mappers/content.inc +++ b/mappers/content.inc @@ -25,6 +25,7 @@ function content_feeds_node_processor_targets_alter(&$targets, $content_type) { $targets[$k] = array( 'name' => $name, 'callback' => 'content_feeds_set_target', + 'description' => t('Maps to the !name CCK field.', array('!name' => $name)), ); } }