You are here

function brightcove_media_element_info_alter in Brightcove Video Connect 7.4

Same name and namespace in other branches
  1. 7.2 brightcove_media/brightcove_media.module \brightcove_media_element_info_alter()
  2. 7.3 brightcove_media/brightcove_media.module \brightcove_media_element_info_alter()

Implements hook_element_info_alter().

Parameters

$type:

File

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

Code

function brightcove_media_element_info_alter(&$type) {
  if (isset($type['media']['#process'])) {
    array_unshift($type['media']['#process'], 'brightcove_media_media_element_process');
  }
}