You are here

Subscriber.php in Excel Serialization 8

File

src/EventSubscriber/Subscriber.php
View source
<?php

namespace Drupal\xls_serialization\EventSubscriber;

use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\HttpKernel\KernelEvents;

/**
 * Event subscriber for adding XLS content to the request.
 */
class Subscriber implements EventSubscriberInterface {

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {
    $events[KernelEvents::REQUEST][] = [
      'onKernelRequest',
    ];
    return $events;
  }

  /**
   * Register content formats on the request object.
   *
   * @param Symfony\Component\HttpKernel\Event\RequestEvent $event
   *   The event to get the request object to register on.
   */
  public function onKernelRequest(RequestEvent $event) {
    $event
      ->getRequest()
      ->setFormat('xls', [
      'application/vnd.ms-excel',
    ]);
    $event
      ->getRequest()
      ->setFormat('xlsx', [
      'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
    ]);
  }

}

Classes

Namesort descending Description
Subscriber Event subscriber for adding XLS content to the request.