You are here

public static function DepCalcExcludeLingotekContentMetadataSubscriber::getSubscribedEvents in Lingotek Translation 4.0.x

Same name and namespace in other branches
  1. 3.6.x src/EventSubscriber/DepCalcExcludeLingotekContentMetadataSubscriber.php \Drupal\lingotek\EventSubscriber\DepCalcExcludeLingotekContentMetadataSubscriber::getSubscribedEvents()
  2. 3.7.x src/EventSubscriber/DepCalcExcludeLingotekContentMetadataSubscriber.php \Drupal\lingotek\EventSubscriber\DepCalcExcludeLingotekContentMetadataSubscriber::getSubscribedEvents()
  3. 3.8.x src/EventSubscriber/DepCalcExcludeLingotekContentMetadataSubscriber.php \Drupal\lingotek\EventSubscriber\DepCalcExcludeLingotekContentMetadataSubscriber::getSubscribedEvents()

File

src/EventSubscriber/DepCalcExcludeLingotekContentMetadataSubscriber.php, line 14

Class

DepCalcExcludeLingotekContentMetadataSubscriber

Namespace

Drupal\lingotek\EventSubscriber

Code

public static function getSubscribedEvents() {

  // DependencyCalculatorEvents::FILTER_FIELDS from depcalc module.
  $events['depcalc_filter_fields'][] = [
    'onFilterFields',
    1002,
  ];
  return $events;
}