public function SocialEventManagersViewsBulkOperationsBulkForm::__construct in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 8.5 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 8.6 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 8.7 modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 10.3.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 10.0.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 10.1.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- 10.2.x modules/social_features/social_event/modules/social_event_managers/src/Plugin/views/field/SocialEventManagersViewsBulkOperationsBulkForm.php \Drupal\social_event_managers\Plugin\views\field\SocialEventManagersViewsBulkOperationsBulkForm::__construct()
Constructs a new SocialEventManagersViewsBulkOperationsBulkForm 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\views_bulk_operations\Service\ViewsbulkOperationsViewDataInterface $viewData: The VBO View Data provider service.
\Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionManager $actionManager: Extended action manager object.
\Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessorInterface $actionProcessor: Views Bulk Operations action processor.
\Drupal\Core\TempStore\PrivateTempStoreFactory $tempStoreFactory: User private temporary storage factory.
\Drupal\Core\Session\AccountInterface $currentUser: The current user object.
\Symfony\Component\HttpFoundation\RequestStack $requestStack: The request stack.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.
1 call to SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- SocialEventAnEnrollViewsBulkOperationsBulkForm::__construct in modules/
social_features/ social_event/ modules/ social_event_an_enroll/ src/ Plugin/ views/ field/ SocialEventAnEnrollViewsBulkOperationsBulkForm.php - Constructs a new SocialEventAnEnrollViewsBulkOperationsBulkForm object.
1 method overrides SocialEventManagersViewsBulkOperationsBulkForm::__construct()
- SocialEventAnEnrollViewsBulkOperationsBulkForm::__construct in modules/
social_features/ social_event/ modules/ social_event_an_enroll/ src/ Plugin/ views/ field/ SocialEventAnEnrollViewsBulkOperationsBulkForm.php - Constructs a new SocialEventAnEnrollViewsBulkOperationsBulkForm object.
File
- modules/
social_features/ social_event/ modules/ social_event_managers/ src/ Plugin/ views/ field/ SocialEventManagersViewsBulkOperationsBulkForm.php, line 60
Class
- SocialEventManagersViewsBulkOperationsBulkForm
- Defines the Enrollments Views Bulk Operations field plugin.
Namespace
Drupal\social_event_managers\Plugin\views\fieldCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, ViewsbulkOperationsViewDataInterface $viewData, ViewsBulkOperationsActionManager $actionManager, ViewsBulkOperationsActionProcessorInterface $actionProcessor, PrivateTempStoreFactory $tempStoreFactory, AccountInterface $currentUser, RequestStack $requestStack, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $viewData, $actionManager, $actionProcessor, $tempStoreFactory, $currentUser, $requestStack);
$this->entityTypeManager = $entity_type_manager;
}