public function ReplicationActionForm::__construct in Deploy - Content Staging 8
Constructs a ContentEntityForm object.
Parameters
\Drupal\multiversion\Workspace\ConflictTrackerInterface $conflict_tracker: The conflict tracking service.
\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type plug-in manager.
\Drupal\multiversion\Workspace\WorkspaceManagerInterface $workspace_manager: The workspace manager.
File
- src/
Form/ ReplicationActionForm.php, line 68
Class
- ReplicationActionForm
- ReplicationActionForm class.
Namespace
Drupal\deploy\FormCode
public function __construct(ConflictTrackerInterface $conflict_tracker, EntityTypeManagerInterface $entity_type_manager, WorkspaceManagerInterface $workspace_manager) {
$this->conflictTracker = $conflict_tracker;
$this->entityTypeManager = $entity_type_manager;
$this->workspaceManager = $workspace_manager;
}