You are here

public function CopyRemoteFlow::__construct in CMS Content Sync 8

Same name and namespace in other branches
  1. 2.1.x src/Form/CopyRemoteFlow.php \Drupal\cms_content_sync\Form\CopyRemoteFlow::__construct()
  2. 2.0.x src/Form/CopyRemoteFlow.php \Drupal\cms_content_sync\Form\CopyRemoteFlow::__construct()

Constructs a new ConfigSingleImportForm.

Parameters

\Drupal\Core\Config\StorageInterface $config_storage: The config storage

File

src/Form/CopyRemoteFlow.php, line 66

Class

CopyRemoteFlow
Form handler for the Pool add and edit forms.

Namespace

Drupal\cms_content_sync\Form

Code

public function __construct(StorageInterface $config_storage, EntityTypeBundleInfoInterface $bundle_info_service) {
  $this->configStorage = $config_storage;
  $this->bundleInfoService = $bundle_info_service;
}