You are here

public static function FlagCountManager::getSubscribedEvents in Flag 8.4

File

src/FlagCountManager.php, line 295

Class

FlagCountManager
Class FlagCountManager.

Namespace

Drupal\flag

Code

public static function getSubscribedEvents() {
  $events = [];
  $events[FlagEvents::ENTITY_FLAGGED][] = [
    'incrementFlagCounts',
    -100,
  ];
  $events[FlagEvents::ENTITY_UNFLAGGED][] = [
    'decrementFlagCounts',
    -100,
  ];
  return $events;
}