You are here

ViewsPreExecuteEvent.php in Hook Event Dispatcher 8

File

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

namespace Drupal\hook_event_dispatcher\Event\Views;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

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

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

}

Classes

Namesort descending Description
ViewsPreExecuteEvent Class ViewsPreExecuteEvent.