You are here

abstract public function DrupalVersion::getSourceValues in Drupal-to-Drupal data migration 7.2

@abstract Add CCK/core field values to the source row.

Parameters

$row:

$entity_id:

Return value

array

3 methods override DrupalVersion::getSourceValues()
DrupalVersion5::getSourceValues in d5/d5.inc
Populate a migration's source row object with field values.
DrupalVersion6::getSourceValues in d6/d6.inc
Populate a migration's source row object with field values.
DrupalVersion7::getSourceValues in d7/d7.inc
Populate a migration's source row object with field values.

File

./migrate_d2d.migrate.inc, line 401
Base classes for all Drupal-to-Drupal migration classes.

Class

DrupalVersion
There should be an implementation of this abstract class, named DrupalVersion{version #}, for each Drupal version supported as a source. It will implement any functions needed by multiple version-specific classes (e.g., nodes as well as users).

Code

public abstract function getSourceValues($row, $entity_id);