You are here

public function MigrationBase::__construct in CMS Content Sync 8

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

Constructs a new FieldStorageAddForm object.

@internal param \Drupal\Core\Entity\EntityManagerInterface $entity_manager The entity manager.* The entity manager.

Parameters

\Drupal\acquia_contenthub\EntityManager $acquia_entity_manager:

\Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info:

\Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager: The field type plugin manager.

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

\Drupal\Core\Extension\ModuleHandler $module_handler:

\Drupal\Core\Entity\EntityTypeManager $entity_type_manager:

2 calls to MigrationBase::__construct()
MigratePull::__construct in modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePull.php
Constructs a new FieldStorageAddForm object.
MigratePush::__construct in modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePush.php
Constructs a new FieldStorageAddForm object.
2 methods override MigrationBase::__construct()
MigratePull::__construct in modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePull.php
Constructs a new FieldStorageAddForm object.
MigratePush::__construct in modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigratePush.php
Constructs a new FieldStorageAddForm object.

File

modules/cms_content_sync_migrate_acquia_content_hub/src/Form/MigrationBase.php, line 127

Class

MigrationBase
Content Sync advanced debug form.

Namespace

Drupal\cms_content_sync_migrate_acquia_content_hub\Form

Code

public function __construct(EntityManager $acquia_entity_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, FieldTypePluginManagerInterface $field_type_plugin_manager, ConfigFactoryInterface $config_factory, ModuleHandler $module_handler, EntityTypeManager $entity_type_manager) {
  $this->acquiaEntityManager = $acquia_entity_manager;
  $this->entityTypeBundleInfo = $entity_type_bundle_info;
  $this->fieldTypePluginManager = $field_type_plugin_manager;
  $this->configFactory = $config_factory;
  $this->moduleHandler = $module_handler;
  $this->entityTypeManager = $entity_type_manager;
}