You are here

function emvideo_spike_embedded_link in Embedded Media Field 6.3

Same name and namespace in other branches
  1. 6 contrib/emvideo/providers/spike.inc \emvideo_spike_embedded_link()

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/spike.inc, line 54
This include processes Spike media files for use by emfield.module.

Code

function emvideo_spike_embedded_link($video_code) {
  return 'http://www.spike.com/video/' . $video_code;
}