public function AjaxBasePageNegotiator::__construct

public AjaxBasePageNegotiator::__construct(CsrfTokenGenerator $token_generator, ConfigFactoryInterface $config_factory, RequestStack $request_stack)

Constructs a new AjaxBasePageNegotiator.

Parameters

\Drupal\Core\Access\CsrfTokenGenerator $token_generator: The CSRF token generator.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack used to retrieve the current request.

File

core/lib/Drupal/Core/Theme/AjaxBasePageNegotiator.php, line 60

Class

AjaxBasePageNegotiator
Defines a theme negotiator that deals with the active theme on ajax requests.

Namespace

Drupal\Core\Theme

Code

public function __construct(CsrfTokenGenerator $token_generator, ConfigFactoryInterface $config_factory, RequestStack $request_stack) {
  $this->csrfGenerator = $token_generator;
  $this->configFactory = $config_factory;
  $this->requestStack = $request_stack;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Theme!AjaxBasePageNegotiator.php/function/AjaxBasePageNegotiator::__construct/8.1.x