function brightcove_migrate_api in Brightcove Video Connect 7.6
Same name and namespace in other branches
- 7.7 brightcove.module \brightcove_migrate_api()
Implements hook_migrate_api().
File
- ./
brightcove.module, line 1926 - Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.
Code
function brightcove_migrate_api() {
$api = [
'api' => MIGRATE_API_VERSION,
'field handlers' => [
'MigrateBrightcoveFieldHandler',
],
];
return $api;
}