You are here

abstract class ActivityContextBase in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  2. 8 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  3. 8.2 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  4. 8.3 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  5. 8.4 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  6. 8.5 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  7. 8.6 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  8. 8.7 modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  9. 10.3.x modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  10. 10.0.x modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  11. 10.1.x modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase
  12. 10.2.x modules/custom/activity_creator/src/Plugin/ActivityContextBase.php \Drupal\activity_creator\Plugin\ActivityContextBase

Base class for Activity context plugin plugins.

Hierarchy

Expanded class hierarchy of ActivityContextBase

13 files declare their use of ActivityContextBase
CommunityActivityContext.php in modules/custom/activity_basics/src/Plugin/ActivityContext/CommunityActivityContext.php
ContentInMyGroupActivityContext.php in modules/custom/activity_basics/src/Plugin/ActivityContext/ContentInMyGroupActivityContext.php
ContentReportActivityContext.php in modules/social_features/social_content_report/src/Plugin/ActivityContext/ContentReportActivityContext.php
FollowContentActivityContext.php in modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php
GroupActivityContext.php in modules/custom/activity_basics/src/Plugin/ActivityContext/GroupActivityContext.php

... See full list

File

modules/custom/activity_creator/src/Plugin/ActivityContextBase.php, line 15

Namespace

Drupal\activity_creator\Plugin
View source
abstract class ActivityContextBase extends PluginBase implements ActivityContextInterface, ContainerFactoryPluginInterface {

  /**
   * The entity query.
   *
   * @var \Drupal\Core\Entity\Query\Sql\QueryFactory
   */
  private $entityQuery;

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * ActivityContextBase constructor.
   *
   * @param array $configuration
   *   A configuration array containing information about the plugin instance.
   * @param string $plugin_id
   *   The plugin_id for the plugin instance.
   * @param mixed $plugin_definition
   *   The plugin implementation definition.
   * @param \Drupal\Core\Entity\Query\Sql\QueryFactory $entity_query
   *   The entity query.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, QueryFactory $entity_query, EntityTypeManagerInterface $entity_type_manager) {
    parent::__construct($configuration, $plugin_id, $plugin_definition);
    $this->entityQuery = $entity_query;
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    return new static($configuration, $plugin_id, $plugin_definition, $container
      ->get('entity.query.sql'), $container
      ->get('entity_type.manager'));
  }

  /**
   * {@inheritdoc}
   */
  public function getRecipients(array $data, $last_uid, $limit) {
    return [];
  }

  /**
   * {@inheritdoc}
   */
  public function isValidEntity(EntityInterface $entity) {
    return TRUE;
  }

  /**
   * Returns recipients from post.
   *
   * @param array $referenced_entity
   *   The referenced entity.
   *
   * @return array
   *   An associative array of recipients, containing the following key-value
   *   pairs:
   *   - target_type: The entity type ID.
   *   - target_id: The entity ID.
   */
  public function getRecipientsFromPost(array $referenced_entity) {
    $recipients = [];
    $post = $this->entityTypeManager
      ->getStorage('post')
      ->load($referenced_entity['target_id']);
    if ($post !== NULL && !$post->field_recipient_user
      ->isEmpty()) {
      $recipients[] = [
        'target_type' => 'user',
        'target_id' => $post->field_recipient_user->target_id,
      ];
    }
    return $recipients;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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 3
ActivityContextBase::getRecipients public function Returns a batched list of recipients for this context. Overrides ActivityContextInterface::getRecipients 13
ActivityContextBase::getRecipientsFromPost public function Returns recipients from post.
ActivityContextBase::isValidEntity public function Determines if the entity is valid for this context. Overrides ActivityContextInterface::isValidEntity 8
ActivityContextBase::__construct public function ActivityContextBase constructor. Overrides PluginBase::__construct 3
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 3
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.