You are here

public function InviteEmailBaseForm::__construct in Open Social 10.2.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_core/src/Form/InviteEmailBaseForm.php \Drupal\social_core\Form\InviteEmailBaseForm::__construct()
  2. 10.3.x modules/social_features/social_core/src/Form/InviteEmailBaseForm.php \Drupal\social_core\Form\InviteEmailBaseForm::__construct()
  3. 10.0.x modules/social_features/social_core/src/Form/InviteEmailBaseForm.php \Drupal\social_core\Form\InviteEmailBaseForm::__construct()
  4. 10.1.x modules/social_features/social_core/src/Form/InviteEmailBaseForm.php \Drupal\social_core\Form\InviteEmailBaseForm::__construct()

Constructs a new BulkGroupInvitation Form.

Parameters

\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.

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

\Drupal\Core\Logger\LoggerChannelFactoryInterface $logger_factory: The logger factory service.

1 call to InviteEmailBaseForm::__construct()
EnrollInviteEmailForm::__construct in modules/social_features/social_event/modules/social_event_invite/src/Form/EnrollInviteEmailForm.php
Constructs a new BulkGroupInvitation Form.
1 method overrides InviteEmailBaseForm::__construct()
EnrollInviteEmailForm::__construct in modules/social_features/social_event/modules/social_event_invite/src/Form/EnrollInviteEmailForm.php
Constructs a new BulkGroupInvitation Form.

File

modules/social_features/social_core/src/Form/InviteEmailBaseForm.php, line 54

Class

InviteEmailBaseForm
Class InviteBaseForm.

Namespace

Drupal\social_core\Form

Code

public function __construct(RouteMatchInterface $route_match, EntityTypeManagerInterface $entity_type_manager, LoggerChannelFactoryInterface $logger_factory) {
  $this->routeMatch = $route_match;
  $this->entityTypeManager = $entity_type_manager;
  $this->loggerFactory = $logger_factory;
}