You are here

function theme_brightcove_unavailable_message in Brightcove Video Connect 7.3

Same name and namespace in other branches
  1. 6.2 brightcove.module \theme_brightcove_unavailable_message()
  2. 6 brightcove.module \theme_brightcove_unavailable_message()
  3. 7.7 brightcove.module \theme_brightcove_unavailable_message()
  4. 7.2 brightcove.module \theme_brightcove_unavailable_message()
  5. 7.4 brightcove.module \theme_brightcove_unavailable_message()
  6. 7.5 brightcove.module \theme_brightcove_unavailable_message()
  7. 7.6 brightcove.module \theme_brightcove_unavailable_message()
1 theme call to theme_brightcove_unavailable_message()
brightcove_expose_unavailable in ./brightcove.module
Check if expose unavailability message in case the video is not available.

File

./brightcove.module, line 594
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 theme_brightcove_unavailable_message($variables) {
  return '<div class="video-unavailable">' . $variables['message'] . '</div>';
}