You are here

public function WebprofilerEventSubscriber::onKernelResponse in Devel 8

Same name and namespace in other branches
  1. 8.3 webprofiler/src/EventSubscriber/WebprofilerEventSubscriber.php \Drupal\webprofiler\EventSubscriber\WebprofilerEventSubscriber::onKernelResponse()
  2. 8.2 webprofiler/src/EventSubscriber/WebprofilerEventSubscriber.php \Drupal\webprofiler\EventSubscriber\WebprofilerEventSubscriber::onKernelResponse()
  3. 4.x webprofiler/src/EventSubscriber/WebprofilerEventSubscriber.php \Drupal\webprofiler\EventSubscriber\WebprofilerEventSubscriber::onKernelResponse()

Parameters

\Symfony\Component\HttpKernel\Event\FilterResponseEvent $event:

File

webprofiler/src/EventSubscriber/WebprofilerEventSubscriber.php, line 47

Class

WebprofilerEventSubscriber
Class WebprofilerEventSubscriber

Namespace

Drupal\webprofiler\EventSubscriber

Code

public function onKernelResponse(FilterResponseEvent $event) {
  $response = $event
    ->getResponse();
  $request = $event
    ->getRequest();
  if ($response->headers
    ->has('X-Debug-Token') && NULL !== $this->urlGenerator) {
    $response->headers
      ->set('X-Debug-Token-Link', $this->urlGenerator
      ->generate('webprofiler.dashboard', [
      'profile' => $response->headers
        ->get('X-Debug-Token'),
    ]));
  }

  // do not capture redirects or modify XML HTTP Requests
  if ($request
    ->isXmlHttpRequest()) {
    return;
  }
  if ($this->currentUser
    ->hasPermission('view webprofiler toolbar')) {
    $this
      ->injectToolbar($response);
  }
}