Skip to content

Instantly share code, notes, and snippets.

@coquer
Last active August 29, 2015 14:14
Show Gist options
  • Save coquer/050ed6ea84def6fb2be1 to your computer and use it in GitHub Desktop.
Save coquer/050ed6ea84def6fb2be1 to your computer and use it in GitHub Desktop.
BootStrapLight Box Prepare URL
function changeVimeoURiToEnableLightBox($url){
$video_url = parse_url($url);
if($video_url['host'] == 'www.vimeo.com' || $video_url['host'] == 'vimeo.com'){
return 'player.'.$video_url['host'].'/video'.$video_url['path'];
}
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment