You are here

ThemeSuggestionsAlterEvent.php in Hook Event Dispatcher 8

File

src/Event/Theme/ThemeSuggestionsAlterEvent.php
View source
<?php

namespace Drupal\hook_event_dispatcher\Event\Theme;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class ThemeSuggestionsAlterEvent.
 */
class ThemeSuggestionsAlterEvent extends BaseThemeSuggestionsEvent {

  /**
   * Returns the hook dispatcher type.
   *
   * @return string
   *   Dispatcher type.
   */
  public function getDispatcherType() {
    return HookEventDispatcherInterface::THEME_SUGGESTIONS_ALTER;
  }

}

Classes

Namesort descending Description
ThemeSuggestionsAlterEvent Class ThemeSuggestionsAlterEvent.