final class ViewTablePreprocessEventFactory in Hook Event Dispatcher 8
Class ViewTablePreprocessEventFactory.
Hierarchy
- class \Drupal\hook_event_dispatcher\Event\Preprocess\Factory\ViewTablePreprocessEventFactory implements PreprocessEventFactoryInterface
Expanded class hierarchy of ViewTablePreprocessEventFactory
1 string reference to 'ViewTablePreprocessEventFactory'
1 service uses ViewTablePreprocessEventFactory
File
- src/
Event/ Preprocess/ Factory/ ViewTablePreprocessEventFactory.php, line 11
Namespace
Drupal\hook_event_dispatcher\Event\Preprocess\FactoryView source
final class ViewTablePreprocessEventFactory implements PreprocessEventFactoryInterface {
/**
* {@inheritdoc}
*/
public function createEvent(array &$variables) {
return new ViewTablePreprocessEvent(new ViewTableEventVariables($variables));
}
/**
* {@inheritdoc}
*/
public function getEventHook() {
return ViewTablePreprocessEvent::getHook();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ViewTablePreprocessEventFactory:: |
public | function |
Create the PreprocessEvent with the Variables object embedded. Overrides PreprocessEventFactoryInterface:: |
|
ViewTablePreprocessEventFactory:: |
public | function |
Get the Event hook name. Overrides PreprocessEventFactoryInterface:: |