function emvideo_vimeo_embedded_link in Embedded Media Field 6.3
Same name and namespace in other branches
- 6 contrib/emvideo/providers/vimeo.inc \emvideo_vimeo_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/ vimeo.inc, line 133 - Provide support for the Vimeo provider to the emfield.module.
Code
function emvideo_vimeo_embedded_link($video_code) {
return 'http://www.vimeo.com/' . $video_code;
}