You are here

function countries_migrate_api in Countries 7.2

Same name and namespace in other branches
  1. 8 countries.module \countries_migrate_api()

Implements hook_migrate_api().

File

./countries.module, line 1001
Defines the field and entity information for countries.

Code

function countries_migrate_api() {
  $api = array(
    'api' => 2,
    'field handlers' => array(
      'MigrateCountryFieldHandler',
    ),
  );
  return $api;
}