function brightcove_content_migrate_field_alter in Brightcove Video Connect 7.6
Same name and namespace in other branches
- 7.7 brightcove.module \brightcove_content_migrate_field_alter()
Implements hook_content_migrate_field_alter().
File
- ./
brightcove.module, line 1465 - 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_content_migrate_field_alter(&$field_value, $instance_value) {
switch ($field_value['type']) {
case 'brightcove_field':
$field_value['module'] = 'brightcove';
break;
}
}