You are here

public function MigrateDestinationTermMachineName::hasDeferredImports in Taxonomy Machine Name 7

Check whether or not this destination has terms for which the import was.

"deferred" because their parent term could not be found.

Return value

bool TRUE if there are terms for which import was deferred, FALSE otherwise.

File

./taxonomy_machine_name.migrate.inc, line 197
Taxonomy Machine Name Migrate Module File.

Class

MigrateDestinationTermMachineName
Class MigrateDestinationTermMachineName

Code

public function hasDeferredImports() {
  return count($this->deferred) > 0;
}