You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
308 B
17 lines
308 B
7 years ago
|
<?php
|
||
|
|
||
|
namespace Drupal\islandora\Plugin\Action;
|
||
|
|
||
|
use Drupal\islandora\EventGenerator\EmitEvent;
|
||
|
|
||
|
/**
|
||
|
* Emits a Media event.
|
||
|
*
|
||
|
* @Action(
|
||
|
* id = "emit_media_event",
|
||
|
* label = @Translation("Emit a media event to a queue/topic"),
|
||
|
* type = "media"
|
||
|
* )
|
||
|
*/
|
||
|
class EmitMediaEvent extends EmitEvent {}
|