You are here

public static function SimpleSitemapSyncExtend::getSubscribedEvents in CMS Content Sync 2.0.x

Same name and namespace in other branches
  1. 8 modules/cms_content_sync_simple_sitemap/src/EventSubscriber/SimpleSitemapSyncExtend.php \Drupal\cms_content_sync_simple_sitemap\EventSubscriber\SimpleSitemapSyncExtend::getSubscribedEvents()
  2. 2.1.x modules/cms_content_sync_simple_sitemap/src/EventSubscriber/SimpleSitemapSyncExtend.php \Drupal\cms_content_sync_simple_sitemap\EventSubscriber\SimpleSitemapSyncExtend::getSubscribedEvents()

Returns an array of event names this subscriber wants to listen to.

Return value

array The event names to listen to

File

modules/cms_content_sync_simple_sitemap/src/EventSubscriber/SimpleSitemapSyncExtend.php, line 24

Class

SimpleSitemapSyncExtend
Event subscriptions for events dispatched by Content Sync.

Namespace

Drupal\cms_content_sync_simple_sitemap\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[BeforeEntityPush::EVENT_NAME][] = [
    'extendPush',
  ];
  $events[BeforeEntityPull::EVENT_NAME][] = [
    'extendPull',
  ];
  $events[BeforeEntityTypeExport::EVENT_NAME][] = [
    'extendEntityType',
  ];
  return $events;
}