function views_ui_ajax_update_form

Updates a part of the add view form via AJAX.

Return value

The part of the form that has changed.

1 string reference to 'views_ui_ajax_update_form'
views_ui_add_ajax_trigger in drupal/core/modules/views/views_ui/admin.inc
Converts a form element in the add view wizard to be AJAX-enabled.

File

drupal/core/modules/views/views_ui/admin.inc, line 217
Provides the Views' administrative interface.

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 drupal_array_get_nested_value($form, $form_state['triggering_element']['#views_ui_ajax_data']['refresh_parents']);
}