You are here

function theme_video_cck_revver_flash in Embedded Media Field 5

2 theme calls to theme_video_cck_revver_flash()
video_cck_revver_preview in contrib/video_cck/providers/revver.inc
video_cck_revver_video in contrib/video_cck/providers/revver.inc

File

contrib/video_cck/providers/revver.inc, line 53

Code

function theme_video_cck_revver_flash($embed, $width, $height, $autoplay) {
  if ($embed) {
    $autoplay = $autoplay ? ';flashvars:autoStart=true;' : '';
    $output .= '<script src="http://flash.revver.com/player/1.0/player.js?mediaId:' . $embed . ';affiliateId:' . check_plain(variable_get('video_cck_revver_affiliate_id', '0')) . ';height:' . $height . ';width:' . $width . $autoplay . ';" type="text/javascript"></script>';
  }
  return $output;
}