public function ConfigureAction::__construct in Views Bulk Operations (VBO) 8
Same name and namespace in other branches
- 8.3 src/Form/ConfigureAction.php \Drupal\views_bulk_operations\Form\ConfigureAction::__construct()
- 8.2 src/Form/ConfigureAction.php \Drupal\views_bulk_operations\Form\ConfigureAction::__construct()
- 4.0.x src/Form/ConfigureAction.php \Drupal\views_bulk_operations\Form\ConfigureAction::__construct()
Constructor.
Parameters
\Drupal\user\PrivateTempStoreFactory $tempStoreFactory: User private temporary storage factory.
\Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionManager $actionManager: Extended action manager object.
\Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessorInterface $actionProcessor: Views Bulk Operations action processor.
File
- src/
Form/ ConfigureAction.php, line 50
Class
- ConfigureAction
- Action configuration form.
Namespace
Drupal\views_bulk_operations\FormCode
public function __construct(PrivateTempStoreFactory $tempStoreFactory, ViewsBulkOperationsActionManager $actionManager, ViewsBulkOperationsActionProcessorInterface $actionProcessor) {
$this->tempStoreFactory = $tempStoreFactory;
$this->actionManager = $actionManager;
$this->actionProcessor = $actionProcessor;
}