Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chamilo-lms/main/lp/embed.php

45 lines
1.4 KiB

<?php
/* For licensing terms, see /license.txt */
require_once __DIR__.'/../inc/global.inc.php';
$type = $_REQUEST['type'];
$src = Security::remove_XSS($_REQUEST['source']);
if (empty($type) || empty($src)) {
api_not_allowed();
}
$iframe = '';
switch ($type) {
case 'youtube':
$src = '//www.youtube.com/embed/'.$src;
$iframe .= '<div id="content" style="width: 700px ;margin-left:auto; margin-right:auto;"><br />';
$iframe .= '<iframe class="youtube-player" type="text/html" width="640" height="385" src="'.$src.'" frameborder="0"></iframe>';
$iframe .= '</div>';
break;
case 'vimeo':
$src = '//player.vimeo.com/video/'.$src;
$iframe .= '<div id="content" style="width: 700px ;margin-left:auto; margin-right:auto;"><br />';
$iframe .= '<iframe src="'.$src.'" width="640" height="385" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>';
$iframe .= '</div>';
break;
case 'nonhttps':
$icon = '&nbsp;<em class="icon-external-link icon-2x"></em>';
9 years ago
$iframe = Display::return_message(
Display::url($src.$icon, $src, ['class' => 'btn', 'target' => '_blank']),
'normal',
false
);
break;
}
9 years ago
$htmlHeadXtra[] = "
<style>
body { background: none;}
</style>
";
Display::display_reduced_header();
echo $iframe;
Display::display_footer();