You are here

public function ExampleViewsEventSubscribers::postBuild in Hook Event Dispatcher 8.2

Same name and namespace in other branches
  1. 3.x 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_dispatcher

Code

public function postBuild(ViewsPostBuildEvent $event) : void {
  $view = $event
    ->getView();

  // Do something with the view.
  $view->build_info;
}