You are here

public function FormAjaxResponseBuilder::__construct in Zircon Profile 8

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

Constructs a new FormAjaxResponseBuilder.

Parameters

\Drupal\Core\Render\MainContent\MainContentRendererInterface $ajax_renderer: The ajax renderer.

\Drupal\Core\Routing\RouteMatchInterface $route_match: The current route match.

File

core/lib/Drupal/Core/Form/FormAjaxResponseBuilder.php, line 47
Contains \Drupal\Core\Form\FormAjaxResponseBuilder.

Class

FormAjaxResponseBuilder
Builds an AJAX form response.

Namespace

Drupal\Core\Form

Code

public function __construct(MainContentRendererInterface $ajax_renderer, RouteMatchInterface $route_match) {
  $this->ajaxRenderer = $ajax_renderer;
  $this->routeMatch = $route_match;
}