You are here

ViewsPreBuildEvent.php in Hook Event Dispatcher 8

File

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

namespace Drupal\hook_event_dispatcher\Event\Views;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

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

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

}

Classes

Namesort descending Description
ViewsPreBuildEvent Class ViewsPreBuildEvent.