You are here

public static function PubSubHubbub::getSubscribedEvents in Feeds 8.3

File

src/EventSubscriber/PubSubHubbub.php, line 47

Class

PubSubHubbub
Event listener for PubSubHubbub subscriptions.

Namespace

Drupal\feeds\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events = [];
  $events[FeedsEvents::FETCH][] = [
    'onPostFetch',
    FeedsEvents::AFTER,
  ];
  $events[FeedsEvents::FEEDS_DELETE][] = 'onDeleteMultipleFeeds';
  return $events;
}