public function UserExportPluginBase::__construct in Open Social 8.4
Same name and namespace in other branches
- 8.9 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::__construct()
UserExportPluginBase 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.
Overrides PluginBase::__construct
2 calls to UserExportPluginBase::__construct()
- UserAnalyticsGroupMemberships::__construct in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAnalyticsGroupMemberships.php - UserExportPluginBase constructor.
- UserGroupMemberships::__construct in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserGroupMemberships.php - UserExportPluginBase constructor.
2 methods override UserExportPluginBase::__construct()
- UserAnalyticsGroupMemberships::__construct in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAnalyticsGroupMemberships.php - UserExportPluginBase constructor.
- UserGroupMemberships::__construct in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserGroupMemberships.php - UserExportPluginBase constructor.
File
- modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPluginBase.php, line 60
Class
- UserExportPluginBase
- Base class for User export plugin plugins.
Namespace
Drupal\social_user_export\PluginCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, Connection $database) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityTypeManager = $entity_type_manager;
$this->dateFormatter = $date_formatter;
$this->database = $database;
}