You are here

function emvideo_archive_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/archive.inc, line 267
This is an archive.org provider include file for Embedded Media Video.

Code

function emvideo_archive_embedded_link($video_code) {
  return 'http://www.archive.org/details/' . $video_code;
}