You are here

public static function AddressFormatSubscriber::getSubscribedEvents in Open Social 8.8

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

Get the subscribed events.

Return value

mixed Returns the subscribed events.

File

modules/social_features/social_group/src/EventSubscriber/AddressFormatSubscriber.php, line 21

Class

AddressFormatSubscriber
Class AddressFormatSubscriber.

Namespace

Drupal\social_group\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[AddressEvents::ADDRESS_FORMAT][] = [
    'onGetDefinition',
    0,
  ];
  return $events;
}