You are here

function emaudio_odeo_audio in Embedded Media Field 5

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

Implementation of hook emaudio_odeo_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/odeo.inc, line 106

Code

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