You are here

function feeds_tamper_ajax_callback in Feeds Tamper 8.2

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

Ajax callback for add plugin form.

File

legacy/feeds_tamper_ui/feeds_tamper_ui.admin.inc, line 22
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'];
}