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.
16 lines
312 B
16 lines
312 B
<?php |
|
|
|
namespace Drupal\islandora\Plugin\Action; |
|
|
|
use Drupal\islandora\EventGenerator\EmitEvent; |
|
|
|
/** |
|
* Emits a Term event. |
|
* |
|
* @Action( |
|
* id = "emit_term_event", |
|
* label = @Translation("Emit a term event to a queue/topic"), |
|
* type = "taxonomy_term" |
|
* ) |
|
*/ |
|
class EmitTermEvent extends EmitEvent {}
|
|
|