You are here

function emvideo_bliptv_embedded_link in Embedded Media Field 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

contrib/emvideo/providers/bliptv.inc, line 218
This include processes blip.tv media files for use by emfield.module.

Code

function emvideo_bliptv_embedded_link($video_code) {
  return 'http://blip.tv/file/' . $video_code;
}