You are here

EntityEvents.php in Entity API 8

File

src/Event/EntityEvents.php
View source
<?php

namespace Drupal\entity\Event;


/**
 * Defines events for the Entity module.
 */
final class EntityEvents {

  /**
   * Name of the event fired after saving a duplicated entity.
   *
   * @Event
   *
   * @see \Drupal\entity\Event\EntityDuplicateEvent
   */
  const ENTITY_DUPLICATE = 'entity.duplicate';

}

Classes

Namesort descending Description
EntityEvents Defines events for the Entity module.