Au delà de la gestion de contenu 'classique', NPDS met en oeuvre un ensemble de fonctions spécifiquement dédiées à la gestion de Communauté et de groupes de travail collaboratif.
Il s'agit d'un Content & Community Management System (CCMS) robuste, sécurisé, complet, performant et parlant vraiment français.
Gérez votre Communauté d'utilisateurs, vos groupes de travail collaboratif, publiez, gérez et organisez votre contenu dynamique !
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);
}