class ContentInMyGroupActivityContext in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.2 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.3 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.4 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.5 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.6 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 8.7 modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
Provides a 'ContentInMyGroupActivityContext' activity context.
Plugin annotation
@ActivityContext(
id = "content_in_my_group_activity_context",
label = @Translation("Content in my group activity context"),
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
- class \Drupal\activity_basics\Plugin\ActivityContext\ContentInMyGroupActivityContext
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
Expanded class hierarchy of ContentInMyGroupActivityContext
File
- modules/
custom/ activity_basics/ src/ Plugin/ ActivityContext/ ContentInMyGroupActivityContext.php, line 20
Namespace
Drupal\activity_basics\Plugin\ActivityContextView source
class ContentInMyGroupActivityContext 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'])) {
$referenced_entity = ActivityFactory::getActivityRelatedEntity($data);
$owner_id = '';
if (isset($referenced_entity['target_type']) && $referenced_entity['target_type'] === 'post') {
try {
/** @var \Drupal\social_post\Entity\PostInterface $post */
$post = $this->entityTypeManager
->getStorage('post')
->load($referenced_entity['target_id']);
} catch (PluginNotFoundException $exception) {
return $recipients;
}
// It could happen that a notification has been queued but the content
// has since been deleted. In that case we can find no additional
// recipients.
if (!$post) {
return $recipients;
}
$gid = $post
->get('field_recipient_group')
->getValue();
$owner_id = $post
->getOwnerId();
}
else {
/* @var \Drupal\group\Entity\GroupContentInterface $group_content */
$group_content = $this->entityTypeManager
->getStorage('group_content')
->load($referenced_entity['target_id']);
// It could happen that a notification has been queued but the content
// has since been deleted. In that case we can find no additional
// recipients.
if (!$group_content) {
return $recipients;
}
$node = $group_content
->getEntity();
if ($node instanceof NodeInterface) {
$owner_id = $node
->getOwnerId();
if (!$node
->isPublished()) {
return $recipients;
}
}
$gid = $group_content
->get('gid')
->getValue();
}
if ($gid && isset($gid[0]['target_id'])) {
$target_id = $gid[0]['target_id'];
$recipients[] = [
'target_type' => 'group',
'target_id' => $target_id,
];
$group = $this->entityTypeManager
->getStorage('group')
->load($target_id);
// It could happen that a notification has been queued but the content
// has since been deleted. In that case we can find no additional
// recipients.
if (!$group instanceof GroupInterface) {
return $recipients;
}
$memberships = $group
->getMembers();
foreach ($memberships as $membership) {
// Check if this not the created user.
if ($owner_id != $membership
->getUser()
->id()) {
$recipients[] = [
'target_type' => 'user',
'target_id' => $membership
->getUser()
->id(),
];
}
}
}
}
return $recipients;
}
/**
* {@inheritdoc}
*/
public function isValidEntity(EntityInterface $entity) {
switch ($entity
->getEntityTypeId()) {
case 'group_content':
return TRUE;
case 'post':
return !$entity->field_recipient_group
->isEmpty();
default:
return FALSE;
}
}
}
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 |
ContentInMyGroupActivityContext:: |
public | function |
Returns a batched list of recipients for this context. Overrides ActivityContextBase:: |
|
ContentInMyGroupActivityContext:: |
public | function |
Determines if the entity is valid for this context. Overrides ActivityContextBase:: |
|
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. |