<?php/**
* @file
* Definition of Drupal\Core\EventSubscriber\LegacyRequestSubscriber.
*/namespaceDrupal\Core\EventSubscriber;
useSymfony\Component\HttpKernel\HttpKernelInterface;
useSymfony\Component\HttpKernel\KernelEvents;
useSymfony\Component\HttpKernel\Event\GetResponseEvent;
useSymfony\Component\EventDispatcher\EventSubscriberInterface;
/**
* KernelEvents::REQUEST event subscriber to initialize theme and modules.
*
* @todo Remove this subscriber when all of the code in it has been refactored.
*/class LegacyRequestSubscriberimplements EventSubscriberInterface {
/**
* Initializes the rest of the legacy Drupal subsystems.
*
* @param Symfony\Component\HttpKernel\Event\GetResponseEvent $event
* The Event to process.
*/
public functiononKernelRequestLegacy(GetResponseEvent $event) {
if ($event
->getRequestType() == HttpKernelInterface::MASTER_REQUEST) {
menu_set_custom_theme();
drupal_theme_initialize();
// Tell Drupal it is now fully bootstrapped (for the benefit of code that
// calls drupal_get_bootstrap_phase()), but without having
// _drupal_bootstrap_full() do anything, since we've already done the
// equivalent above and in earlier listeners._drupal_bootstrap_full(TRUE);
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
}
}
/**
* Registers the methods in this class that should be listeners.
*
* @return array
* An array of event listener definitions.
*/
static functiongetSubscribedEvents() {
$events[KernelEvents::REQUEST][] = array(
'onKernelRequestLegacy',
90,
);
return$events;
}
}