You are here

public static function ExportAllEnrolments::create in Open Social 10.3.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/Action/ExportAllEnrolments.php \Drupal\social_event_an_enroll_enrolments_export\Plugin\Action\ExportAllEnrolments::create()
  2. 8.5 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::create()
  3. 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::create()
  4. 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::create()
  5. 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::create()
  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::create()
  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::create()
  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::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

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.

Return value

static Returns an instance of this plugin.

Overrides ExportUser::create

File

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

Class

ExportAllEnrolments
Exports a event enrollment accounts to CSV.

Namespace

Drupal\social_event_an_enroll_enrolments_export\Plugin\Action

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('plugin.manager.user_export_plugin'), $container
    ->get('logger.factory')
    ->get('action'), $container
    ->get('current_user'), $container
    ->get('config.factory'), $container
    ->get('social_event_an_enroll.manager'));
}