brightcove-cck-node-image.tpl.php in Brightcove Video Connect 6.2
Same filename and directory in other branches
brightcove-cck-node-image.tpl.php Image theme implementation.
This template is used when viewing a Brightcove video with a thumbnail or videoStill image without a link.
Available variables:
- $output: Formatted image, ready for printing.
 - $image_field: The name of the image field used from Media API. Can be thumbnailURL or videoStillURL.
 - $nid: Node NID.
 - $video_id: Video ID from Media API.
 - $field_name: CCK Field name.
 - $type_name: Node type.
 
See also
1 theme call to brightcove-cck-node-image.tpl.php
- theme_brightcove_cck_node_image in brightcove_cck/
brightcove_cck.formatters.inc  - Theme callback for Default thumbnail.
 
File
brightcove_cck/brightcove-cck-node-image.tpl.phpView source
<?php
/**
 * @file brightcove-cck-node-image.tpl.php
 * Image theme implementation.
 *
 * This template is used when viewing a Brightcove video with a thumbnail or videoStill image without a link.
 *
 * Available variables:
 *   - $output: Formatted image, ready for printing.
 *   - $image_field: The name of the image field used from Media API. Can be thumbnailURL or videoStillURL.
 *   - $nid: Node NID.
 *   - $video_id: Video ID from Media API.
 *   - $field_name: CCK Field name.
 *   - $type_name: Node type.
 *
 * @see theme_brightcove_cck_node_image()
 */
?>
<?php
if ($output) {
  echo $output;
}