You are here

function emaudio_podomatic_embedded_link in Embedded Media Field 6

Same name and namespace in other branches
  1. 5 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_embedded_link()
  2. 6.3 contrib/emaudio/providers/podomatic.inc \emaudio_podomatic_embedded_link()

hook emaudio_PROVIDER_embedded_link($audio_code) returns a link to view the audio at the provider's site

Parameters

$audio_code: the string containing the audio to watch @return a string containing the URL to view the audio at the original provider's site

File

contrib/emaudio/providers/podomatic.inc, line 76
This include processes Podomatic audio files for use by emaudio.module.

Code

function emaudio_podomatic_embedded_link($audio_code) {
  return 'http://www.podomatic.com/podcast/embed/' . $audio_code;
}