You are here

function weight_migrate_api in Weight 7.2

Implements hook_migrate_api().

File

./weight.migrate.inc, line 11
Migrate support for weight.

Code

function weight_migrate_api() {
  return array(
    'api' => 2,
    'destination handlers' => array(
      'WeightNodeHandler',
    ),
  );
}