You are here

function feeds_node_get_form in Feeds Node Helper 6

Same name and namespace in other branches
  1. 7 plugins/feeds_get.inc \feeds_node_get_form()

Form for building the user ID map, no options needed

1 string reference to 'feeds_node_get_form'
feeds_get.inc in plugins/feeds_get.inc
Allow for mapping values from an external roles system to drupal roles

File

plugins/feeds_get.inc, line 22
Allow for mapping values from an external roles system to drupal roles

Code

function feeds_node_get_form($importer, $element_key, $settings) {
  $form = array();
  $form['get_arg'] = array(
    '#type' => 'textfield',
    '#title' => t('GET argument to use'),
    '#default_value' => isset($settings['get_arg']) ? $settings['get_arg'] : '',
  );
  return $form;
}