You are here

function business_rules_entity_update in Business Rules 2.x

Same name and namespace in other branches
  1. 8 business_rules.module \business_rules_entity_update()

Implements hook_entity_update().

File

./business_rules.module, line 71
Business Rules module.

Code

function business_rules_entity_update(EntityInterface $entity) {

  // Only handle content entities and ignore config entities.
  if (\Drupal::service('business_rules.processor')
    ->ruleExists('entity_update', $entity)) {
    $reacts_on_definition = \Drupal::getContainer()
      ->get('plugin.manager.business_rules.reacts_on')
      ->getDefinition('entity_update');
    $entity_type_id = $entity
      ->getEntityTypeId();
    $event = new BusinessRulesEvent($entity, [
      'entity_type_id' => $entity_type_id,
      'bundle' => $entity
        ->bundle(),
      'entity' => $entity,
      'entity_unchanged' => $entity->original,
      'reacts_on' => $reacts_on_definition,
      'loop_control' => $entity
        ->getEntityTypeId() . $entity
        ->id(),
    ]);

    /** @var \Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher */
    $event_dispatcher = \Drupal::service('event_dispatcher');
    $event_dispatcher
      ->dispatch($reacts_on_definition['eventName'], $event);
  }
}