1 views_ui.admin.inc views_ui_ajax_update_form($form, $form_state)

Updates a part of the add view form via AJAX.

Return value

The part of the form that has changed.:

File

core/modules/views_ui/views_ui.admin.inc, line 763
Admin page callbacks for the Views UI module.

Code

function views_ui_ajax_update_form($form, $form_state) {
  // The region that needs to be updated was stored in a property of the
  // triggering element by views_ui_add_ajax_trigger(), so all we have to do is
  // retrieve that here.
  return backdrop_array_get_nested_value($form, $form_state['triggering_element']['#views_ui_ajax_data']['refresh_parents']);
}