You are here

ViewFieldPreprocessEventFactory.php in Hook Event Dispatcher 8.2

File

modules/preprocess_event_dispatcher/src/Factory/ViewFieldPreprocessEventFactory.php
View source
<?php

namespace Drupal\preprocess_event_dispatcher\Factory;

use Drupal\preprocess_event_dispatcher\Event\AbstractPreprocessEvent;
use Drupal\preprocess_event_dispatcher\Event\ViewFieldPreprocessEvent;
use Drupal\preprocess_event_dispatcher\Variables\ViewFieldEventVariables;

/**
 * Class ViewFieldPreprocessEventFactory.
 */
final class ViewFieldPreprocessEventFactory implements PreprocessEventFactoryInterface {

  /**
   * {@inheritdoc}
   */
  public function createEvent(array &$variables) : AbstractPreprocessEvent {
    return new ViewFieldPreprocessEvent(new ViewFieldEventVariables($variables));
  }

  /**
   * {@inheritdoc}
   */
  public function getEventHook() : string {
    return ViewFieldPreprocessEvent::getHook();
  }

}

Classes

Namesort descending Description
ViewFieldPreprocessEventFactory Class ViewFieldPreprocessEventFactory.