function theme_brightcove_unavailable_message in Brightcove Video Connect 7.6
Same name and namespace in other branches
- 6.2 brightcove.module \theme_brightcove_unavailable_message()
- 6 brightcove.module \theme_brightcove_unavailable_message()
- 7.7 brightcove.module \theme_brightcove_unavailable_message()
- 7.2 brightcove.module \theme_brightcove_unavailable_message()
- 7.3 brightcove.module \theme_brightcove_unavailable_message()
- 7.4 brightcove.module \theme_brightcove_unavailable_message()
- 7.5 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 2497 - 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>';
}