Select Git revision
EntityEvents.php

#3023884 by bojanz: Add a UI for duplicating entities
Bojan Živanović authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
EntityEvents.php 315 B
<?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';
}