You are here

final class BlockPreprocessEvent in Hook Event Dispatcher 8.2

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

Class BlockPreprocessEvent.

Hierarchy

Expanded class hierarchy of BlockPreprocessEvent

4 files declare their use of BlockPreprocessEvent
BlockPreprocessEventFactory.php in modules/preprocess_event_dispatcher/src/Factory/BlockPreprocessEventFactory.php
ExamplePreprocessEventSubscriber.php in examples/ExamplePreprocessEventSubscriber.php
OtherEventTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventTest.php
OtherEventVariablesTest.php in modules/preprocess_event_dispatcher/tests/src/Unit/OtherEventVariablesTest.php

File

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

Namespace

Drupal\preprocess_event_dispatcher\Event
View source
final class BlockPreprocessEvent extends AbstractPreprocessEvent {

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

}

Members

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