By naveenvalecha on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
8.0.x
Introduced in version:
8.0.0-beta5
Issue links:
Description:
views_ajax_form_wrapper() is moved to a protected method in the \Drupal\views_ui\Form\ViewsFormBase base class.
Before
<?php
$response = views_ajax_form_wrapper($form_class, $form_state);
?>
After
<?php
$response = $this->ajaxFormWrapper($form_class, $form_state);
?>
So, to use this function, your form will need to extend this base class.
Impacts:
Module developers