You are here

function emaudio_podomatic_preview in Embedded Media Field 5

Same name and namespace in other branches
  1. 6.3 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_preview()
  2. 6 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_preview()

hook emaudio_PROVIDER_preview this actually displays the preview-sized video we want, commonly for the teaser

Parameters

$embed: the video code for the audio to embed @param $width the width to display the audio @param $height the height to display the audio @param $field the field info from the requesting node @param $item the actual content from the field @return the html of the embedded audio

File

contrib/emaudio/providers/podomatic.inc, line 153

Code

function emaudio_podomatic_preview($embed, $width, $height, $field, $item, $autoplay) {
  $output = theme('emaudio_podomatic_flash', $embed, $width, $height, $autoplay);
  return $output;
}