You are here

class VoteActivityContext in Open Social 10.3.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
  2. 8 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  3. 8.2 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  4. 8.3 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  5. 8.4 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  6. 8.5 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  7. 8.6 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  8. 8.7 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  9. 8.8 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  10. 10.0.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  11. 10.1.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
  12. 10.2.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext

Provides a 'VoteActivityContext' activity context.

Plugin annotation


@ActivityContext(
  id = "vote_activity_context",
  label = @Translation("Vote activity context"),
)

Hierarchy

Expanded class hierarchy of VoteActivityContext

File

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

Namespace

Drupal\social_like\Plugin\ActivityContext
View source
class VoteActivityContext extends ActivityContextBase {

  /**
   * {@inheritdoc}
   */
  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;
  }

  /**
   * {@inheritdoc}
   */
  public function isValidEntity(EntityInterface $entity) {
    return $entity
      ->getEntityTypeId() === 'vote';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityContextBase::$activityFactory protected property The activity factory service.
ActivityContextBase::$entityQuery private property The entity query.
ActivityContextBase::$entityTypeManager protected property The entity type manager.
ActivityContextBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create 7
ActivityContextBase::getRecipientsFromPost public function Returns recipients from post.
ActivityContextBase::__construct public function ActivityContextBase constructor. Overrides PluginBase::__construct 7
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 2
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
VoteActivityContext::getRecipients public function Returns a batched list of recipients for this context. Overrides ActivityContextBase::getRecipients
VoteActivityContext::isValidEntity public function Determines if the entity is valid for this context. Overrides ActivityContextBase::isValidEntity