function Sql::currentDestination

Same name in other branches
  1. 8.9.x core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::currentDestination()
  2. 10 core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::currentDestination()
  3. 11.x core/modules/migrate/src/Plugin/migrate/id_map/Sql.php \Drupal\migrate\Plugin\migrate\id_map\Sql::currentDestination()

Overrides MigrateIdMapInterface::currentDestination

File

core/modules/migrate/src/Plugin/migrate/id_map/Sql.php, line 952

Class

Sql
Defines the sql based ID map implementation.

Namespace

Drupal\migrate\Plugin\migrate\id_map

Code

public function currentDestination() {
    if ($this->valid()) {
        $result = [];
        foreach ($this->destinationIdFields() as $destination_field_name => $id_map_field_name) {
            if (!is_null($this->currentRow[$id_map_field_name])) {
                $result[$destination_field_name] = $this->currentRow[$id_map_field_name];
            }
        }
        return $result;
    }
    else {
        return NULL;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.