You are here

public function VoteActivityContext::getRecipients in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  2. 8 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  3. 8.2 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  4. 8.3 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  5. 8.4 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  6. 8.5 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  7. 8.6 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  8. 8.7 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  9. 8.8 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  10. 10.3.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  11. 10.0.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()
  12. 10.1.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext::getRecipients()

Returns a batched list of recipients for this context.

Parameters

array $data: The data.

int $last_id: The last ID.

int $limit: The limit.

Return value

array An associative array of recipients, containing the following key-value pairs:

  • target_type: The entity type ID.
  • target_id: The entity ID.

Overrides ActivityContextBase::getRecipients

File

modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php, line 22

Class

VoteActivityContext
Provides a 'VoteActivityContext' activity context.

Namespace

Drupal\social_like\Plugin\ActivityContext

Code

public function getRecipients(array $data, $last_uid, $limit) {
  $recipients = [];

  // We only know the context if there is a related object.
  if (isset($data['related_object']) && !empty($data['related_object'])) {
    $related_object = $data['related_object'][0];
    if ($related_object['target_type'] === 'vote') {
      $vote_storage = $this->entityTypeManager
        ->getStorage('vote');
      $vote = $vote_storage
        ->load($related_object['target_id']);
      if ($vote instanceof VoteInterface) {
        $entity_storage = $this->entityTypeManager
          ->getStorage($vote
          ->getVotedEntityType());

        /** @var \Drupal\Core\Entity\EntityInterface $entity */
        $entity = $entity_storage
          ->load($vote
          ->getVotedEntityId());
        $uid = $entity
          ->getOwnerId();

        // Don't send notifications to myself.
        if ($uid !== $data['actor']) {
          $recipients[] = [
            'target_type' => 'user',
            'target_id' => $uid,
          ];
        }
      }
    }
  }
  return $recipients;
}