class ContentInMyGroupActivityContext in Open Social 8.5
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.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
- 8.8 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' acitivy 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 22
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') {
$post = Post::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 (!$post instanceof PostInterface) {
return $recipients;
}
$gid = $post
->get('field_recipient_group')
->getValue();
$owner_id = $post
->getOwnerId();
}
else {
/* @var \Drupal\group\Entity\GroupContentInterface $group_content_entity */
$group_content_entity = \Drupal::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_entity instanceof GroupContentInterface) {
return $recipients;
}
/* @var \Drupal\node\Entity\Node $node */
$node = $group_content_entity
->getEntity();
if ($node instanceof Node) {
$owner_id = $node
->getOwnerId();
}
$gid = $group_content_entity
->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 = 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($entity) {
// Check if it's placed in a group (regardless off content type).
if ($entity
->getEntityTypeId() === 'group_content') {
return TRUE;
}
if ($entity
->getEntityTypeId() === 'post') {
if (!empty($entity
->get('field_recipient_group')
->getValue())) {
return TRUE;
}
}
return FALSE;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ActivityContextBase:: |
private | property | Entity query. | |
ActivityContextBase:: |
protected | property | Entity type manager. | |
ActivityContextBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
1 |
ActivityContextBase:: |
public | function | Returns recipients from post. | |
ActivityContextBase:: |
public | function |
Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase:: |
1 |
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. |