public function MigrateManifest::__construct in Migrate Manifest 8.2
Same name and namespace in other branches
- 8 src/MigrateManifest.php \Drupal\migrate_manifest\MigrateManifest::__construct()
- 3.x src/MigrateManifest.php \Drupal\migrate_manifest\MigrateManifest::__construct()
Constructs a new MigrateManifest object.
Parameters
$migration_manager:
bool $force: Force operation to regardless of dependencies.
bool $update: Update previously imported items with current data.
File
- src/
MigrateManifest.php, line 43
Class
Namespace
Drupal\migrate_manifestCode
public function __construct($migration_manager, LoggerInterface $logger, $force = FALSE, $update = FALSE) {
$this->force = $force;
$this->update = $update;
$this->manager = $migration_manager;
$this->logger = $logger;
}