function emvideo_dailymotion_embedded_link in Embedded Media Field 6
Same name and namespace in other branches
- 6.3 contrib/emvideo/providers/dailymotion.inc \emvideo_dailymotion_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/ dailymotion.inc, line 87 - This include processes dailymotion media files for use by emfield.module.
Code
function emvideo_dailymotion_embedded_link($video_code) {
return 'http://www.dailymotion.com/swf/' . $video_code;
}