Pages vues depuis 25/05/2001 : 109 364 541
Index du forum »» Le coin des codeurs »» Meta Youtube Html5
function MM_ytvideo($id_yt_video,$bloc_width,$bloc_height) {
$content="";
$id_yt_video = arg_filter($id_yt_video);
$bloc_width = arg_filter($bloc_width);
$bloc_height = arg_filter($bloc_height);
$content .='<!iframe! width="'.$bloc_width.'" height="'.$bloc_height.'" src="https://www.youtube.com/!embed!/'.$id_yt_video.'" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></!iframe!>';
return ($content);
}
function MM_ytvideo($id_yt_video,$bloc_width,$bloc_height,$autoplay) {
$content="";
$id_yt_video = arg_filter($id_yt_video);
$bloc_width = arg_filter($bloc_width);
$bloc_height = arg_filter($bloc_height);
$autoplay = arg_filter($autoplay);
$content .='<!iframe! width="'.$bloc_width.'" height="'.$bloc_height.'" src="https://www.youtube.com/!embed!/'.$id_yt_video.'?autoplay='.$autoplay.'" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></!iframe!>';
return ($content);
}