You are here

ViewsPostBuildEvent.php in Hook Event Dispatcher 3.x

File

modules/views_event_dispatcher/src/Event/Views/ViewsPostBuildEvent.php
View source
<?php

namespace Drupal\views_event_dispatcher\Event\Views;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class ViewsPostBuildEvent.
 */
class ViewsPostBuildEvent extends AbstractViewsEvent {

  /**
   * {@inheritdoc}
   */
  public function getDispatcherType() : string {
    return HookEventDispatcherInterface::VIEWS_POST_BUILD;
  }

}

Classes

Namesort descending Description
ViewsPostBuildEvent Class ViewsPostBuildEvent.