public function ExampleViewsEventSubscribers::postBuild in Hook Event Dispatcher 3.x
Same name and namespace in other branches
- 8.2 examples/ExampleViewsEventSubscribers.php \Drupal\hook_event_dispatcher\ExampleViewsEventSubscribers::postBuild()
Post build event handler.
Parameters
\Drupal\views_event_dispatcher\Event\Views\ViewsPostBuildEvent $event: The event.
File
- examples/
ExampleViewsEventSubscribers.php, line 85
Class
- ExampleViewsEventSubscribers
- Class ExampleViewsEventSubscribers.
Namespace
Drupal\hook_event_dispatcherCode
public function postBuild(ViewsPostBuildEvent $event) : void {
$view = $event
->getView();
// Do something with the view.
$view->build_info;
}