function brightcove_get_default_image in Brightcove Video Connect 6.2
Same name and namespace in other branches
- 6 brightcove.module \brightcove_get_default_image()
- 7.7 brightcove.module \brightcove_get_default_image()
- 7.2 brightcove.module \brightcove_get_default_image()
- 7.3 brightcove.module \brightcove_get_default_image()
- 7.4 brightcove.module \brightcove_get_default_image()
- 7.5 brightcove.module \brightcove_get_default_image()
- 7.6 brightcove.module \brightcove_get_default_image()
Will return a default image for videos without a thumbnail or still image.
8 calls to brightcove_get_default_image()
- brightcove_admin_settings in ./
brightcove.admin.inc - Form builder.
- brightcove_cck_browse in brightcove_cck/
brightcove_cck.browse.inc - This function is a callback for modalframe window, providing an access to browse videos.
- theme_brightcove_cck_lightbox2_imagecache in brightcove_cck/
brightcove_cck.formatters.inc - Theme callback for Lightbox2 with imagecache player.
- theme_brightcove_cck_lightbox2_player in brightcove_cck/
brightcove_cck.formatters.inc - Theme callback for Default thumbnail -> Lightbox2 player formatter.
- theme_brightcove_cck_node_image in brightcove_cck/
brightcove_cck.formatters.inc - Theme callback for Default thumbnail.
File
- ./
brightcove.module, line 250 - 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_get_default_image() {
return drupal_get_path('module', 'brightcove') . '/images/default-image.png';
}