You are here

final class NodePreprocessEvent in Hook Event Dispatcher 3.x

Same name and namespace in other branches
  1. 8.2 modules/preprocess_event_dispatcher/src/Event/NodePreprocessEvent.php \Drupal\preprocess_event_dispatcher\Event\NodePreprocessEvent

Class NodePreprocessEvent.

Hierarchy

Expanded class hierarchy of NodePreprocessEvent

4 files declare their use of NodePreprocessEvent
EntityEventTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/EntityEventTest.php
EntityEventVariablesTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/EntityEventVariablesTest.php
ExamplePreprocessEventSubscriber.php in examples/ExamplePreprocessEventSubscriber.php
NodePreprocessEventFactory.php in modules/preprocess_event_dispatcher/src/Factory/NodePreprocessEventFactory.php

File

modules/preprocess_event_dispatcher/src/Event/NodePreprocessEvent.php, line 8

Namespace

Drupal\preprocess_event_dispatcher\Event
View source
final class NodePreprocessEvent extends AbstractPreprocessEntityEvent {

  /**
   * {@inheritdoc}
   */
  public static function getHook() : string {
    return 'node';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractPreprocessEntityEvent::name public static function Get the Event name. Overrides AbstractPreprocessEvent::name
AbstractPreprocessEvent::$variables protected property Event variables.
AbstractPreprocessEvent::getVariables public function Get the variables. Overrides PreprocessEventInterface::getVariables
AbstractPreprocessEvent::__construct public function PreprocessEvent constructor.
NodePreprocessEvent::getHook public static function Get the hook name. Overrides PreprocessEventInterface::getHook
PreprocessEventInterface::DISPATCH_NAME_PREFIX public constant