You are here

public function Migrator::getMigrations in Lightning Workflow 8.3

Same name and namespace in other branches
  1. 8.2 modules/lightning_scheduler/src/Migrator.php \Drupal\lightning_scheduler\Migrator::getMigrations()

Returns the entity types still needing migration.

Return value

string[] The entity type IDs that still need to be migrated.

2 calls to Migrator::getMigrations()
Migrator::completeMigration in modules/lightning_scheduler/src/Migrator.php
Completes the migration for a single entity type.
Migrator::getEntityTypesToMigrate in modules/lightning_scheduler/src/Migrator.php
Returns all content entity types which need to be migrated.

File

modules/lightning_scheduler/src/Migrator.php, line 84

Class

Migrator
The migration is not an API and should not be extended or re-used.

Namespace

Drupal\lightning_scheduler

Code

public function getMigrations() {
  return $this->state
    ->get('lightning_scheduler.migrations', []);
}