You are here

public static function MentionsDelete::getSubscribedEvents in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  2. 8 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  3. 8.2 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  4. 8.3 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  5. 8.4 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  6. 8.5 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  7. 8.6 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  8. 8.7 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  9. 8.8 modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  10. 10.3.x modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  11. 10.1.x modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()
  12. 10.2.x modules/custom/mentions/src/EventSubscriber/MentionsDelete.php \Drupal\mentions\EventSubscriber\MentionsDelete::getSubscribedEvents()

File

modules/custom/mentions/src/EventSubscriber/MentionsDelete.php, line 44

Class

MentionsDelete
MentionsDelete handles event 'mentions.delete'.

Namespace

Drupal\mentions\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events = [];
  $events['mentions.delete'][] = [
    'onMentionsDelete',
    0,
  ];
  return $events;
}