You are here

function brightcove_get_default_image in Brightcove Video Connect 7.2

Same name and namespace in other branches
  1. 6.2 brightcove.module \brightcove_get_default_image()
  2. 6 brightcove.module \brightcove_get_default_image()
  3. 7.7 brightcove.module \brightcove_get_default_image()
  4. 7.3 brightcove.module \brightcove_get_default_image()
  5. 7.4 brightcove.module \brightcove_get_default_image()
  6. 7.5 brightcove.module \brightcove_get_default_image()
  7. 7.6 brightcove.module \brightcove_get_default_image()

Returns 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_field_browse in brightcove_field/brightcove_field.browse.inc
This function is a callback for modalframe window, providing an access to browse videos.
theme_brightcove_field_dialog_image in brightcove_field/brightcove_field.formatters.inc
Theme callback for dialog with image player.
theme_brightcove_field_dialog_player in brightcove_field/brightcove_field.formatters.inc
Theme callback for Default thumbnail -> dialog player formatter.
theme_brightcove_field_entity_image in brightcove_field/brightcove_field.formatters.inc
Theme callback for Default thumbnail.

... See full list

File

./brightcove.module, line 287
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';
}