function views_ui_ajax_update_form
3.x 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.
1 string reference to 'views_ui_ajax_update_form'
- views_ui_add_ajax_trigger in includes/
admin.inc - Converts a form element in the add view wizard to be AJAX-enabled.
File
- includes/
admin.inc, line 677 - 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']);
}