You are here

function feeds_tamper_ajax_callback in Feeds Tamper 7

Same name and namespace in other branches
  1. 8.2 legacy/feeds_tamper_ui/feeds_tamper_ui.admin.inc \feeds_tamper_ajax_callback()

Ajax callback for add plugin form.

1 string reference to 'feeds_tamper_ajax_callback'
feeds_tamper_ui_add_plugin_form in feeds_tamper_ui/feeds_tamper_ui.admin.inc
Add plugin form.

File

feeds_tamper_ui/feeds_tamper_ui.admin.inc, line 549
Forms and their accompanying validation and submit functions for Feeds Tamper UI.

Code

function feeds_tamper_ajax_callback($form, $form_state) {

  // The form has already been submitted and updated. We can return the replaced
  // item as it is.
  return $form['plugin'];
}