You are here

public function MigrateSourceOracle::fields in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 plugins/sources/oracle.inc \MigrateSourceOracle::fields()

Returns a list of fields available to be mapped from the source query.

Return value

array Keys: machine names of the fields (to be passed to addFieldMapping) Values: Human-friendly descriptions of the fields.

Overrides MigrateSource::fields

File

plugins/sources/oracle.inc, line 118
Define a MigrateSource class for importing from Oracle databases.

Class

MigrateSourceOracle
Implementation of MigrateSource, to handle imports from remote Oracle servers.

Code

public function fields() {

  // The fields are passed to the constructor for this plugin.
  return $this->fields;
}