You are here

public function TaxonomyTermPreprocessEventFactory::createEvent in Hook Event Dispatcher 8

Create the PreprocessEvent with the Variables object embedded.

Parameters

array $variables: Variables.

Return value

\Drupal\hook_event_dispatcher\Event\Preprocess\AbstractPreprocessEvent Created event.

Overrides PreprocessEventFactoryInterface::createEvent

File

src/Event/Preprocess/Factory/TaxonomyTermPreprocessEventFactory.php, line 16

Class

TaxonomyTermPreprocessEventFactory
Class TaxonomyTermPreprocessEventFactory.

Namespace

Drupal\hook_event_dispatcher\Event\Preprocess\Factory

Code

public function createEvent(array &$variables) {
  return new TaxonomyTermPreprocessEvent(new TaxonomyTermEventVariables($variables));
}