function emaudio_podomatic_audio in Embedded Media Field 6
Same name and namespace in other branches
- 5 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_audio()
- 6.3 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_audio()
hook emaudio_PROVIDER_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/ podomatic.inc, line 133 - This include processes Podomatic audio files for use by emaudio.module.
Code
function emaudio_podomatic_audio($embed, $width, $height, $field, $item, $node, $autoplay) {
$output = theme('emaudio_podomatic_flash', $embed, $width, $height, $autoplay);
return $output;
}