function emaudio_podcastalley_audio in Embedded Media Field 6.3
Same name and namespace in other branches
- 5 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.
$width: The width to display the audio.
$height: The height to display the audio.
$field: The field info from the requesting node.
$item: The actual content from the field.
Return value
The html of the embedded audio.
File
- contrib/
emaudio/ providers/ podcastalley.inc, line 139 - This include processes Podcastalley audio files for use by emaudio.module.
Code
function emaudio_podcastalley_audio($embed, $width, $height, $field, $item, $node, $autoplay) {
$output = theme('emaudio_podcastalley_flash', $embed, $width, $height, $autoplay);
return $output;
}