public function Migrator::getMigrations in Lightning Workflow 8.2
Same name and namespace in other branches
- 8.3 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 85
Class
- Migrator
- This class is final because the migration is not an API and should not be extended or re-used.
Namespace
Drupal\lightning_schedulerCode
public function getMigrations() {
return $this->state
->get('lightning_scheduler.migrations', []);
}