You are here

public function FormAjaxResponseBuilderInterface::buildResponse in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Form/FormAjaxResponseBuilderInterface.php \Drupal\Core\Form\FormAjaxResponseBuilderInterface::buildResponse()

Builds a response for an AJAX form.

Parameters

\Symfony\Component\HttpFoundation\Request $request: The current request.

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

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

array $commands: An array of AJAX commands to apply to the form.

Return value

\Drupal\Core\Ajax\AjaxResponse An AJAX response representing the form and its AJAX commands.

Throws

\Symfony\Component\HttpKernel\Exception\HttpException Thrown if the AJAX callback is not a callable.

1 method overrides FormAjaxResponseBuilderInterface::buildResponse()
FormAjaxResponseBuilder::buildResponse in core/lib/Drupal/Core/Form/FormAjaxResponseBuilder.php
Builds a response for an AJAX form.

File

core/lib/Drupal/Core/Form/FormAjaxResponseBuilderInterface.php, line 35
Contains \Drupal\Core\Form\FormAjaxResponseBuilderInterface.

Class

FormAjaxResponseBuilderInterface
Provides an interface for building AJAX form responses.

Namespace

Drupal\Core\Form

Code

public function buildResponse(Request $request, array $form, FormStateInterface $form_state, array $commands);