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