You are here

function migrate_example_oracle_migrate_api in Migrate 6.2

Same name and namespace in other branches
  1. 7.2 migrate_example/migrate_example_oracle/migrate_example_oracle.migrate.inc \migrate_example_oracle_migrate_api()

File

migrate_example/migrate_example_oracle/migrate_example_oracle.migrate.inc, line 84
Examples and test fodder for migration from Oracle sources. To use this example (and to run the corresponding tests) you must define a connection to an Oracle database in your settings.php. E.g.,

Code

function migrate_example_oracle_migrate_api() {
  $api = array(
    'api' => 2,
    'migrations' => array(
      'MigrateExampleOracle' => array(
        'class_name' => 'MigrateExampleOracleNode',
      ),
    ),
  );
  return $api;
}