You are here

function emaudio_custom_url_audio in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emaudio/providers/custom_url.inc \emaudio_custom_url_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/custom_url.inc, line 154
This is an include file used by emfield.module.

Code

function emaudio_custom_url_audio($url = NULL, $width = 0, $height = 0, $field = NULL, $data = array(), $node = NULL, $autoplay = FALSE) {
  return theme('emaudio_custom_url_flash', $url, $width, $height, $field, $data, $node, $autoplay);
}