public static function MentionsInsert::getSubscribedEvents in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.2 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.3 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.4 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.5 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.6 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.7 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 8.8 modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 10.3.x modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 10.0.x modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 10.1.x modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
- 10.2.x modules/custom/mentions/src/EventSubscriber/MentionsInsert.php \Drupal\mentions\EventSubscriber\MentionsInsert::getSubscribedEvents()
File
- modules/
custom/ mentions/ src/ EventSubscriber/ MentionsInsert.php, line 15
Class
- MentionsInsert
- MentionsInsert handles event 'mentions.insert'.
Namespace
Drupal\mentions\EventSubscriberCode
public static function getSubscribedEvents() {
$events['mentions.insert'][] = [
'onMentionsInsert',
0,
];
return $events;
}