Events.php in DropzoneJS 8.2
Same filename and directory in other branches
Namespace
Drupal\dropzonejs\EventsFile
src/Events/Events.phpView source
<?php
namespace Drupal\dropzonejs\Events;
/**
* Contains all events thrown by dropzonejs.
*/
final class Events {
/**
* The MEDIA_ENTITY_CREATE event.
*
* The MEDIA_ENTITY_CREATE event occurs when creating a new Media Entity,
* before it is saved to the database.
*
* @var string
*/
const MEDIA_ENTITY_CREATE = 'dropzonejs.media_entity_create';
/**
* The MEDIA_ENTITY_PRECREATE event.
*
* This event occurs when creating a new Media Entity,
* before it is displayed in the Inline Entity Form Widget (currently only
* used there)
*
* @var string
*/
const MEDIA_ENTITY_PRECREATE = 'dropzonejs.media_entity_precreate';
}