You are here

final class CommentPreprocessEventFactory in Hook Event Dispatcher 3.x

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

Class CommentPreprocessEventFactory.

Hierarchy

Expanded class hierarchy of CommentPreprocessEventFactory

1 string reference to 'CommentPreprocessEventFactory'
preprocess_event_dispatcher.services.yml in modules/preprocess_event_dispatcher/preprocess_event_dispatcher.services.yml
modules/preprocess_event_dispatcher/preprocess_event_dispatcher.services.yml
1 service uses CommentPreprocessEventFactory
preprocess_event.factory.comment in modules/preprocess_event_dispatcher/preprocess_event_dispatcher.services.yml
Drupal\preprocess_event_dispatcher\Factory\CommentPreprocessEventFactory

File

modules/preprocess_event_dispatcher/src/Factory/CommentPreprocessEventFactory.php, line 12

Namespace

Drupal\preprocess_event_dispatcher\Factory
View source
final class CommentPreprocessEventFactory implements PreprocessEventFactoryInterface {

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

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

}

Members

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