You are here

function brightcove_media_file_type_alter in Brightcove Video Connect 7.7

Same name and namespace in other branches
  1. 7.4 brightcove_media/brightcove_media.module \brightcove_media_file_type_alter()
  2. 7.6 brightcove_media/brightcove_media.module \brightcove_media_file_type_alter()

Implements hook_file_type_alter().

File

brightcove_media/brightcove_media.module, line 183
This module provide the hook implementations for the integration with Media module.

Code

function brightcove_media_file_type_alter(&$types, $file) {
  if (strpos($file->filemime, 'brightcove')) {
    $types = [
      'video',
    ];
  }
}