You are here

class PlatformActivityContext in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
  2. 8.8 modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
  3. 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
  4. 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\PlatformActivityContext
  5. 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

Expanded class hierarchy of PlatformActivityContext

File

modules/custom/activity_basics/src/Plugin/ActivityContext/PlatformActivityContext.php, line 15

Namespace

Drupal\activity_basics\Plugin\ActivityContext
View 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 = $this->activityFactory
        ->getActivityRelatedEntity($data);

      // Load the related entity.
      $entity_storage = $this->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

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::isValidEntity public function Determines if the entity is valid for this context. Overrides ActivityContextInterface::isValidEntity 11
ActivityContextBase::__construct public function ActivityContextBase constructor. Overrides PluginBase::__construct 7
PlatformActivityContext::getRecipients public function Returns a batched list of recipients for this context. Overrides ActivityContextBase::getRecipients
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.