You are here

function fivestar_migrate_api in Fivestar 7.2

Implements hook_migrate_api().

File

./fivestar.migrate.inc, line 11
Base integration with the Migrate API class.

Code

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