final class ParagraphPreprocessEventFactory in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 modules/preprocess_event_dispatcher/src/Factory/ParagraphPreprocessEventFactory.php \Drupal\preprocess_event_dispatcher\Factory\ParagraphPreprocessEventFactory
Class ParagraphPreprocessEventFactory.
Hierarchy
- class \Drupal\preprocess_event_dispatcher\Factory\ParagraphPreprocessEventFactory implements PreprocessEventFactoryInterface
Expanded class hierarchy of ParagraphPreprocessEventFactory
1 string reference to 'ParagraphPreprocessEventFactory'
- 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 ParagraphPreprocessEventFactory
- preprocess_event.factory.paragraph in modules/
preprocess_event_dispatcher/ preprocess_event_dispatcher.services.yml - Drupal\preprocess_event_dispatcher\Factory\ParagraphPreprocessEventFactory
File
- modules/
preprocess_event_dispatcher/ src/ Factory/ ParagraphPreprocessEventFactory.php, line 12
Namespace
Drupal\preprocess_event_dispatcher\FactoryView source
final class ParagraphPreprocessEventFactory implements PreprocessEventFactoryInterface {
/**
* {@inheritdoc}
*/
public function createEvent(array &$variables) : AbstractPreprocessEvent {
return new ParagraphPreprocessEvent(new ParagraphEventVariables($variables));
}
/**
* {@inheritdoc}
*/
public function getEventHook() : string {
return ParagraphPreprocessEvent::getHook();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ParagraphPreprocessEventFactory:: |
public | function |
Create the PreprocessEvent with the Variables object embedded. Overrides PreprocessEventFactoryInterface:: |
|
ParagraphPreprocessEventFactory:: |
public | function |
Get the Event hook name. Overrides PreprocessEventFactoryInterface:: |