You are here

final class CommentPreprocessEvent in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x modules/preprocess_event_dispatcher/src/Event/CommentPreprocessEvent.php \Drupal\preprocess_event_dispatcher\Event\CommentPreprocessEvent

Class CommentPreprocessEvent.

Hierarchy

Expanded class hierarchy of CommentPreprocessEvent

3 files declare their use of CommentPreprocessEvent
CommentPreprocessEventFactory.php in modules/preprocess_event_dispatcher/src/Factory/CommentPreprocessEventFactory.php
EntityEventTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/EntityEventTest.php
EntityEventVariablesTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/EntityEventVariablesTest.php

File

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

Namespace

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

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

}

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.
CommentPreprocessEvent::getHook public static function Get the hook name. Overrides PreprocessEventInterface::getHook
PreprocessEventInterface::DISPATCH_NAME_PREFIX public constant