You are here

public function EnrolmentUserDisplayName::__construct in Open Social 10.0.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  2. 8.5 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  3. 8.6 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  4. 8.7 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  5. 8.8 modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  6. 10.3.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  7. 10.1.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()
  8. 10.2.x modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin\EnrolmentUserDisplayName::__construct()

EnrolmentUserDisplayName 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\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date formatter.

\Drupal\Core\Database\Connection $database: The database connection.

\Drupal\social_event_an_enroll\EventAnEnrollManager $social_event_an_enroll_manager: The event an enroll manager.

Overrides UserExportPluginBase::__construct

File

modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/UserExportPlugin/EnrolmentUserDisplayName.php, line 49

Class

EnrolmentUserDisplayName
Provides a 'EnrolmentUserDisplayName' user export row.

Namespace

Drupal\social_event_an_enroll_enrolments_export\Plugin\UserExportPlugin

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, Connection $database, EventAnEnrollManager $social_event_an_enroll_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $date_formatter, $database);
  $this->socialEventAnEnrollManager = $social_event_an_enroll_manager;
}