You are here

protected function TempStore::isTranslationDestination in Multiversion 8

Get whether this destination is for translations.

Return value

bool Whether this destination is for translations.

1 call to TempStore::isTranslationDestination()
TempStore::getIds in src/Plugin/migrate/destination/TempStore.php
Gets the destination IDs.

File

src/Plugin/migrate/destination/TempStore.php, line 115

Class

TempStore
Plugin annotation @MigrateDestination( id = "tempstore" )

Namespace

Drupal\multiversion\Plugin\migrate\destination

Code

protected function isTranslationDestination() {
  return !empty($this->configuration['translations']);
}