You are here

class RequestCloseSubscriber in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php \Drupal\Core\EventSubscriber\RequestCloseSubscriber

Subscriber for all responses.

Hierarchy

  • class \Drupal\Core\EventSubscriber\RequestCloseSubscriber implements \Symfony\Component\EventDispatcher\EventSubscriberInterface

Expanded class hierarchy of RequestCloseSubscriber

1 string reference to 'RequestCloseSubscriber'
core.services.yml in core/core.services.yml
core/core.services.yml
1 service uses RequestCloseSubscriber
request_close_subscriber in core/core.services.yml
Drupal\Core\EventSubscriber\RequestCloseSubscriber

File

core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php, line 13

Namespace

Drupal\Core\EventSubscriber
View source
class RequestCloseSubscriber implements EventSubscriberInterface {

  /**
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * Constructs a new RequestCloseSubscriber instance.
   *
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler.
   */
  public function __construct(ModuleHandlerInterface $module_handler) {
    $this->moduleHandler = $module_handler;
  }

  /**
   * Performs end of request tasks.
   *
   * @todo The body of this function has just been copied almost verbatim from
   *   drupal_page_footer(). There's probably a lot in here that needs to get
   *   removed/changed. Also, if possible, do more light-weight shutdowns on
   *   AJAX requests.
   *
   * @param Symfony\Component\HttpKernel\Event\TerminateEvent $event
   *   The Event to process.
   */
  public function onTerminate(TerminateEvent $event) {
    $this->moduleHandler
      ->writeCache();
  }

  /**
   * Registers the methods in this class that should be listeners.
   *
   * @return array
   *   An array of event listener definitions.
   */
  public static function getSubscribedEvents() {
    $events[KernelEvents::TERMINATE][] = [
      'onTerminate',
      100,
    ];
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
RequestCloseSubscriber::$moduleHandler protected property
RequestCloseSubscriber::getSubscribedEvents public static function Registers the methods in this class that should be listeners.
RequestCloseSubscriber::onTerminate public function Performs end of request tasks.
RequestCloseSubscriber::__construct public function Constructs a new RequestCloseSubscriber instance.