You are here

geolocation.migrate.inc in Geolocation Field 7

Integration with Migrate module.

File

geolocation.migrate.inc
View source
<?php

/**
 * @file
 * Integration with Migrate module.
 */

/**
 * Implement hook_migrate_api().
 */
function geolocation_migrate_api() {
  return array(
    'api' => 2,
    'field handlers' => array(
      'MigrateGeolocationFieldHandler',
    ),
  );
}

Functions

Namesort descending Description
geolocation_migrate_api Implement hook_migrate_api().