Events.php in DropzoneJS 8
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';
}