You are here

Events.php in DropzoneJS 8

Same filename and directory in other branches
  1. 8.2 src/Events/Events.php

File

src/Events/Events.php
View 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';

}

Classes

Namesort descending Description
Events Contains all events thrown by dropzonejs.