class PlatformActivityContext in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
- 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
- 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
- 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
- 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
Provides a 'OwnerActivityContext' activity context.
Plugin annotation
@ActivityContext(
id = "platform_activity_context",
label = @Translation("Platform 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\PlatformActivityContext
- class \Drupal\activity_creator\Plugin\ActivityContextBase implements ActivityContextInterface, ContainerFactoryPluginInterface
Expanded class hierarchy of PlatformActivityContext
File
- modules/
custom/ activity_basics/ src/ Plugin/ ActivityContext/ PlatformActivityContext.php, line 16
Namespace
Drupal\activity_basics\Plugin\ActivityContextView source
class PlatformActivityContext 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_entity = ActivityFactory::getActivityRelatedEntity($data);
// Load the related entity.
$entity_storage = \Drupal::entityTypeManager()
->getStorage($related_entity['target_type']);
$entity = $entity_storage
->load($related_entity['target_id']);
// When nothing found return the empty recipients array. Basically means
// there is no activity sent.
if ($entity === NULL) {
return $recipients;
}
// Add the owner of the related entity as a recipient.
// No owner found set user 1.
$recipients[] = [
'target_type' => 'user',
'target_id' => $entity
->getOwnerId() ?? 1,
];
}
return $recipients;
}
}
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 |
Determines if the entity is valid for this context. Overrides ActivityContextInterface:: |
8 |
ActivityContextBase:: |
public | function |
ActivityContextBase constructor. Overrides PluginBase:: |
3 |
PlatformActivityContext:: |
public | function |
Returns a batched list of recipients 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. |