You are here

PathDeleteEvent.php in Hook Event Dispatcher 3.x

Same filename and directory in other branches
  1. 8.2 modules/path_event_dispatcher/src/Event/Path/PathDeleteEvent.php

File

modules/path_event_dispatcher/src/Event/Path/PathDeleteEvent.php
View source
<?php

namespace Drupal\path_event_dispatcher\Event\Path;

use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;

/**
 * Class PathDeleteEvent.
 */
final class PathDeleteEvent extends AbstractPathEvent {

  /**
   * The redirect.
   *
   * @var bool
   */
  private $redirect;

  /**
   * Constructor.
   *
   * @param array $path
   *   The array structure is identical to that of the return value of
   *   \Drupal\Core\Path\AliasStorageInterface::save().
   */
  public function __construct(array $path) {
    parent::__construct($path);
    $this->redirect = $path['redirect'] ?? FALSE;
  }

  /**
   * Getter.
   *
   * @return bool
   *   If it's a redirect.
   */
  public function isRedirect() : bool {
    return $this->redirect;
  }

  /**
   * Get the dispatcher type.
   *
   * @return string
   *   The dispatcher type.
   */
  public function getDispatcherType() : string {
    return HookEventDispatcherInterface::PATH_DELETE;
  }

}

Classes

Namesort descending Description
PathDeleteEvent Class PathDeleteEvent.