You are here

final class PagePreprocessEventFactory in Hook Event Dispatcher 8

Class PagePreprocessEventFactory.

Hierarchy

Expanded class hierarchy of PagePreprocessEventFactory

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

File

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

Namespace

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

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

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

}

Members

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