class VoteActivityContext in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.2 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.3 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.4 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.5 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.6 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 8.7 modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 10.3.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 10.0.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 10.1.x modules/social_features/social_like/src/Plugin/ActivityContext/VoteActivityContext.php \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- 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
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
- class \Drupal\social_like\Plugin\ActivityContext\VoteActivityContext
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
Expanded class hierarchy of VoteActivityContext
File
- modules/
social_features/ social_like/ src/ Plugin/ ActivityContext/ VoteActivityContext.php, line 17
Namespace
Drupal\social_like\Plugin\ActivityContextView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ActivityContextBase:: |
private | property | The entity query. | |
ActivityContextBase:: |
protected | property | The entity type manager. | |
ActivityContextBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
3 |
ActivityContextBase:: |
public | function | Returns recipients from post. | |
ActivityContextBase:: |
public | function |
ActivityContextBase constructor. Overrides PluginBase:: |
3 |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
VoteActivityContext:: |
public | function |
Returns a batched list of recipients for this context. Overrides ActivityContextBase:: |
|
VoteActivityContext:: |
public | function |
Determines if the entity is valid for this context. Overrides ActivityContextBase:: |