function emaudio_podcastalley_audio in Embedded Media Field 5
Same name and namespace in other branches
- 6.3 contrib/emaudio/providers/podcastalley.inc \emaudio_podcastalley_audio()
- 6 contrib/emaudio/providers/podcastalley.inc \emaudio_podcastalley_audio()
Implementation of hook emaudio_podcastalley_audio(). This actually displays the full/normal-sized video we want, usually on the default page view.
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/ podcastalley.inc, line 104
Code
function emaudio_podcastalley_audio($embed, $width, $height, $field, $item, $autoplay) {
$output = theme('emaudio_podcastalley_flash', $embed, $width, $height, $autoplay);
return $output;
}