You are here

public function Migration::getStoredFieldMappings in Migrate 7.2

1 call to Migration::getStoredFieldMappings()
Migration::getFieldMappings in includes/migration.inc

File

includes/migration.inc, line 127
Defines the base class for import/rollback processes.

Class

Migration
The base class for all import objects. This is where most of the smarts of the migrate module resides. Migrations are created by deriving from this class, and in the constructor (after calling parent::__construct()) initializing at a minimum the name,…

Code

public function getStoredFieldMappings() {
  if (!$this->storedFieldMappingsRetrieved) {
    $this
      ->loadFieldMappings();
    $this->storedFieldMappingsRetrieved = TRUE;
  }
  return $this->storedFieldMappings;
}