You are here

ViewsPostBuildEvent.php in Hook Event Dispatcher 8

File

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

namespace Drupal\hook_event_dispatcher\Event\Views;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

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

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

}

Classes

Namesort descending Description
ViewsPostBuildEvent Class ViewsPostBuildEvent.