You are here

protected function ConfigureBlockFormBase::successfulAjaxSubmit in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/Form/ConfigureBlockFormBase.php \Drupal\layout_builder\Form\ConfigureBlockFormBase::successfulAjaxSubmit()

Allows the form to respond to a successful AJAX submission.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

\Drupal\Core\Ajax\AjaxResponse An AJAX response.

Overrides AjaxFormHelperTrait::successfulAjaxSubmit

File

core/modules/layout_builder/src/Form/ConfigureBlockFormBase.php, line 241

Class

ConfigureBlockFormBase
Provides a base form for configuring a block.

Namespace

Drupal\layout_builder\Form

Code

protected function successfulAjaxSubmit(array $form, FormStateInterface $form_state) {
  return $this
    ->rebuildAndClose($this->sectionStorage);
}