123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /* For licensing terms, see /license.txt */
- use ChamiloSession as Session;
- require_once __DIR__.'/../inc/global.inc.php';
- api_protect_course_script(true);
- $type = $_REQUEST['type'];
- $src = Security::remove_XSS($_REQUEST['source']);
- if (empty($type) || empty($src)) {
- api_not_allowed();
- }
- $iframe = '';
- switch ($type) {
- case 'download':
- /** @var learnpath $learnPath */
- $learnPath = Session::read('oLP');
- $itemId = isset($_GET['lp_item_id']) ? $_GET['lp_item_id'] : '';
- if (!$learnPath || empty($itemId)) {
- api_not_allowed();
- }
- $file = learnpath::rl_get_resource_link_for_learnpath(
- api_get_course_int_id(),
- $learnPath->get_id(),
- $itemId,
- $learnPath->get_view_id()
- );
- $iframe = Display::return_message(
- Display::url(get_lang('Download'), $file, ['class' => 'btn btn-primary']),
- 'info',
- false
- );
- break;
- 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 = ' <em class="icon-external-link icon-2x"></em>';
- $iframe = Display::return_message(
- Display::url($src.$icon, $src, ['class' => 'btn', 'target' => '_blank']),
- 'normal',
- false
- );
- break;
- }
- $htmlHeadXtra[] = "
- <style>
- body { background: none;}
- </style>
- ";
- Display::display_reduced_header();
- echo $iframe;
- Display::display_footer();
|