You are here

function emvideo_youtube_embedded_link in Media: YouTube 6

hook emvideo_PROVIDER_embedded_link($video_code) returns a link to view the video at the provider's site

Parameters

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

File

providers/emvideo/youtube.inc, line 138
This include processes youtube.com media files for use by emfield.module.

Code

function emvideo_youtube_embedded_link($video_code) {
  return media_youtube_video_url($video_code);
}