You are here

class OrganizerActivityContext in Open Social 8.6

Same name and namespace in other branches
  1. 8.9 modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  2. 8.4 modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  3. 8.5 modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  4. 8.7 modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  5. 8.8 modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  6. 10.3.x modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  7. 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  8. 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext
  9. 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\OrganizerActivityContext

Provides a 'OrganizerActivityContext' activity context.

Plugin annotation


@ActivityContext(
 id = "organizer_activity_context",
 label = @Translation("Organizer activity context"),
)

Hierarchy

Expanded class hierarchy of OrganizerActivityContext

File

modules/custom/activity_basics/src/Plugin/ActivityContext/OrganizerActivityContext.php, line 16

Namespace

Drupal\activity_basics\Plugin\ActivityContext
View source
class OrganizerActivityContext 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);
      if ($data['related_object'][0]['target_type'] === 'event_enrollment') {
        $recipients = $this
          ->getRecipientOrganizerFromEntity($related_entity, $data);
      }
    }

    // Remove the actor (user performing action) from recipients list.
    if (!empty($data['actor'])) {
      $key = array_search($data['actor'], array_column($recipients, 'target_id'), FALSE);
      if ($key !== FALSE) {
        unset($recipients[$key]);
      }
    }
    return $recipients;
  }

  /**
   * Returns Organizer recipient from Events.
   */
  public function getRecipientOrganizerFromEntity(array $related_entity, array $data) {
    $recipients = [];

    // Don't return recipients if user enrolls to own Event.
    $original_related_object = $data['related_object'][0];
    if (isset($original_related_object['target_type']) && $original_related_object['target_type'] === 'event_enrollment' && $related_entity !== NULL) {
      $storage = \Drupal::entityTypeManager()
        ->getStorage($related_entity['target_type']);
      $event = $storage
        ->load($related_entity['target_id']);
      if ($event === NULL) {
        return $recipients;
      }
      $recipients[] = [
        'target_type' => 'user',
        'target_id' => $event
          ->getOwnerId(),
      ];
    }

    // If there are any others we should add. Make them also part of the
    // recipients array.
    \Drupal::moduleHandler()
      ->alter('activity_recipient_organizer', $recipients, $event, $original_related_object);
    return $recipients;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ActivityContextBase::$entityQuery private property Entity query.
ActivityContextBase::$entityTypeManager protected property Entity type manager.
ActivityContextBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create 1
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 Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct 1
OrganizerActivityContext::getRecipientOrganizerFromEntity public function Returns Organizer recipient from Events.
OrganizerActivityContext::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 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.