You are here

final class ParagraphPreprocessEventFactory in Hook Event Dispatcher 8

Class ParagraphPreprocessEventFactory.

Hierarchy

Expanded class hierarchy of ParagraphPreprocessEventFactory

1 string reference to 'ParagraphPreprocessEventFactory'
hook_event_dispatcher.services.yml in ./hook_event_dispatcher.services.yml
hook_event_dispatcher.services.yml
1 service uses ParagraphPreprocessEventFactory
preprocess_event.factory.paragraph in ./hook_event_dispatcher.services.yml
Drupal\hook_event_dispatcher\Event\Preprocess\Factory\ParagraphPreprocessEventFactory

File

src/Event/Preprocess/Factory/ParagraphPreprocessEventFactory.php, line 11

Namespace

Drupal\hook_event_dispatcher\Event\Preprocess\Factory
View source
final class ParagraphPreprocessEventFactory implements PreprocessEventFactoryInterface {

  /**
   * {@inheritdoc}
   */
  public function createEvent(array &$variables) {
    return new ParagraphPreprocessEvent(new ParagraphEventVariables($variables));
  }

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

}

Members

Namesort descending Modifiers Type Description Overrides
ParagraphPreprocessEventFactory::createEvent public function Create the PreprocessEvent with the Variables object embedded. Overrides PreprocessEventFactoryInterface::createEvent
ParagraphPreprocessEventFactory::getEventHook public function Get the Event hook name. Overrides PreprocessEventFactoryInterface::getEventHook