You are here

public function ExportAllEnrolments::__construct in Open Social 8.5

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

Constructs a ExportAllEnrolments object.

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\social_user_export\Plugin\UserExportPluginManager $userExportPlugin: The user export plugin manager.

\Psr\Log\LoggerInterface $logger: A logger instance.

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

Overrides ExportUser::__construct

File

modules/social_features/social_event/modules/social_event_an_enroll_enrolments_export/src/Plugin/Action/ExportAllEnrolments.php, line 52

Class

ExportAllEnrolments
Exports a event enrollment accounts to CSV.

Namespace

Drupal\social_event_an_enroll_enrolments_export\Plugin\Action

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, UserExportPluginManager $userExportPlugin, LoggerInterface $logger, EventAnEnrollManager $social_event_an_enroll_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $userExportPlugin, $logger);
  $this->socialEventAnEnrollManager = $social_event_an_enroll_manager;
  $parents = [];
  foreach ($this->pluginDefinitions as $plugin_id => $plugin_definition) {
    if ($plugin_definition['provider'] === 'social_event_an_enroll_enrolments_export') {
      $parents += class_parents($plugin_definition['class']);
    }
  }
  if ($parents) {
    foreach ($this->pluginDefinitions as $plugin_id => $plugin_definition) {
      if ($plugin_definition['provider'] !== 'social_event_an_enroll_enrolments_export' && in_array($plugin_definition['class'], $parents)) {
        unset($this->pluginDefinitions[$plugin_id]);
      }
    }
  }
}