You are here

function theme_video_play_swf in Video 6.3

Same name and namespace in other branches
  1. 5 includes/common.inc \theme_video_play_swf()
  2. 6 includes/common.inc \theme_video_play_swf()
  3. 6.2 includes/common.inc \theme_video_play_swf()

Play Flash .swf files.

Parameters

$node: object with node information

Return value

string of content to display

1 theme call to theme_video_play_swf()
_video_common_get_player in includes/common.inc
Get the object for the suitable player for the parameter resource

File

includes/common.inc, line 129
Add some common functions for the various video types supported

Code

function theme_video_play_swf($element) {
  $video = file_create_url($element['#item']['filepath']);
  $width = isset($element['#item']['data']['width']) ? $element['#item']['data']['width'] : '';
  $height = isset($element['#item']['data']['height']) ? $element['#item']['data']['height'] : '';
  $width = empty($width) ? '350px' : $width . 'px';
  $height = empty($height) ? '285px' : $height . 'px';

  // this will be executed by not Internet Explorer browsers
  $output = '<!--[if !IE]> <-->
            <object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '"
            data="' . $video . '">
            <!--> <![endif]-->' . "\n";

  // this will be executed by Internet Explorer
  $output .= '<!--[if IE]>
             <object type="application/x-shockwave-flash" width="' . $width . '" height="' . $height . '"
             classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
             codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0">
             <![endif]-->' . "\n";

  // params will be passed to both IE or not IE browsers
  $output .= '<param name="movie" value="' . $video . '" />' . "\n" . '<param name="wmode" value="transparent" />' . "\n" . '<p>' . t('Your browser is not able to display this multimedia content.') . '</p>
              </object>';

  /*
    $output = theme('video_format_play', $output, t('http://www.macromedia.com/go/getflashplayer'), t('Link to Flash player download'), t('Download the latest Flash player'));*/
  return $output;
}