You are here

class EventInviteActivityContext in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/modules/social_event_invite/src/Plugin/ActivityContext/EventInviteActivityContext.php \Drupal\social_event_invite\Plugin\ActivityContext\EventInviteActivityContext
  2. 10.3.x modules/social_features/social_event/modules/social_event_invite/src/Plugin/ActivityContext/EventInviteActivityContext.php \Drupal\social_event_invite\Plugin\ActivityContext\EventInviteActivityContext
  3. 10.1.x modules/social_features/social_event/modules/social_event_invite/src/Plugin/ActivityContext/EventInviteActivityContext.php \Drupal\social_event_invite\Plugin\ActivityContext\EventInviteActivityContext
  4. 10.2.x modules/social_features/social_event/modules/social_event_invite/src/Plugin/ActivityContext/EventInviteActivityContext.php \Drupal\social_event_invite\Plugin\ActivityContext\EventInviteActivityContext

Provides a 'EventInviteActivityContext' activity context.

Plugin annotation


@ActivityContext(
  id = "event_invite_activity_context",
  label = @Translation("Event invite activity context"),
)

Hierarchy

Expanded class hierarchy of EventInviteActivityContext

File

modules/social_features/social_event/modules/social_event_invite/src/Plugin/ActivityContext/EventInviteActivityContext.php, line 21

Namespace

Drupal\social_event_invite\Plugin\ActivityContext
View source
class EventInviteActivityContext extends ActivityContextBase {

  /**
   * The module handler.
   *
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * Constructs a EventInviteAnonymousActivityContext object.
   *
   * @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 query factory.
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\activity_creator\ActivityFactory $activity_factory
   *   The activity factory service.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler.
   */
  public function __construct(array $configuration, $plugin_id, $plugin_definition, QueryFactory $entity_query, EntityTypeManagerInterface $entity_type_manager, ActivityFactory $activity_factory, ModuleHandlerInterface $module_handler) {
    parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_query, $entity_type_manager, $activity_factory);
    $this->moduleHandler = $module_handler;
  }

  /**
   * {@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'), $container
      ->get('activity_creator.activity_factory'), $container
      ->get('module_handler'));
  }

  /**
   * {@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'])) {
      if ($data['related_object'][0]['target_type'] === 'event_enrollment') {

        // Get the enrollment id.
        $enrollment_id = $data['related_object'][0]['target_id'];

        /** @var \Drupal\social_event\EventEnrollmentInterface $event_enrollment */
        $event_enrollment = $this->entityTypeManager
          ->getStorage('event_enrollment')
          ->load($enrollment_id);

        // Send out the notification if the user is pending.
        if (!empty($event_enrollment)) {
          if (!$event_enrollment
            ->get('field_enrollment_status')
            ->isEmpty() && $event_enrollment
            ->get('field_enrollment_status')->value === '0' && !$event_enrollment
            ->get('field_request_or_invite_status')
            ->isEmpty() && (int) $event_enrollment
            ->get('field_request_or_invite_status')->value === EventEnrollmentInterface::INVITE_PENDING_REPLY && !$event_enrollment
            ->get('field_account')
            ->isEmpty()) {
            $recipients[] = [
              'target_type' => 'user',
              'target_id' => $event_enrollment
                ->get('field_account')
                ->getString(),
            ];
          }
        }
      }
    }
    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::getRecipientsFromPost public function Returns recipients from post.
ActivityContextBase::isValidEntity public function Determines if the entity is valid for this context. Overrides ActivityContextInterface::isValidEntity 11
EventInviteActivityContext::$moduleHandler protected property The module handler.
EventInviteActivityContext::create public static function Creates an instance of the plugin. Overrides ActivityContextBase::create
EventInviteActivityContext::getRecipients public function Returns a batched list of recipients for this context. Overrides ActivityContextBase::getRecipients
EventInviteActivityContext::__construct public function Constructs a EventInviteAnonymousActivityContext object. Overrides ActivityContextBase::__construct
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.