You are here

public function GroupActivityContext::__construct in Open Social 10.3.x

Same name and namespace in other branches
  1. 10.0.x modules/custom/activity_basics/src/Plugin/ActivityContext/GroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\GroupActivityContext::__construct()
  2. 10.1.x modules/custom/activity_basics/src/Plugin/ActivityContext/GroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\GroupActivityContext::__construct()
  3. 10.2.x modules/custom/activity_basics/src/Plugin/ActivityContext/GroupActivityContext.php \Drupal\activity_basics\Plugin\ActivityContext\GroupActivityContext::__construct()

ActivityContextBase constructor.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\Query\Sql\QueryFactory $entity_query: The entity query.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\activity_creator\ActivityFactory $activity_factory: The activity factory service.

\Drupal\social_group\SocialGroupHelperService $grouphelper_service: The group helper service.

Overrides ActivityContextBase::__construct

File

modules/custom/activity_basics/src/Plugin/ActivityContext/GroupActivityContext.php, line 49

Class

GroupActivityContext
Provides a 'GroupActivityContext' activity context.

Namespace

Drupal\activity_basics\Plugin\ActivityContext

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, QueryFactory $entity_query, EntityTypeManagerInterface $entity_type_manager, ActivityFactory $activity_factory, SocialGroupHelperService $grouphelper_service) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_query, $entity_type_manager, $activity_factory);
  $this->grouphelperService = $grouphelper_service;
}