You are here

public static function GloballinkContinuousEvents::getSubscribedEvents in GlobalLink Connect for Drupal 8.2

Same name and namespace in other branches
  1. 8 src/EventSubscriber/GloballinkContinuousEvents.php \Drupal\globallink\EventSubscriber\GloballinkContinuousEvents::getSubscribedEvents()

File

src/EventSubscriber/GloballinkContinuousEvents.php, line 101

Class

GloballinkContinuousEvents
Event subscriber for tmgmt events.

Namespace

Drupal\globallink\EventSubscriber

Code

public static function getSubscribedEvents() {
  $events[ContinuousEvents::SHOULD_CREATE_JOB][] = [
    'onShouldCreateJob',
  ];
  return $events;
}