From 3f3e517169983d3ed683c7c6fa5f12a741563e78 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Wed, 18 Jul 2012 14:02:21 +0200 Subject: [PATCH] Fixing js error --- main/document/showinframes.php | 80 ++++++++++++++++++---------------- 1 file changed, 43 insertions(+), 37 deletions(-) diff --git a/main/document/showinframes.php b/main/document/showinframes.php index 625e3a7710..a58dd94212 100644 --- a/main/document/showinframes.php +++ b/main/document/showinframes.php @@ -173,34 +173,6 @@ if (api_get_setting('show_glossary_in_documents') == 'ismanual') { // });'; } -if (!$jplayer_supported) { - $htmlHeadXtra[] = ''; - $htmlHeadXtra[] = ''; - - $htmlHeadXtra[] = ''; -} $web_odf_supported_files = DocumentManager::get_web_odf_extension_list(); if (in_array(strtolower($pathinfo['extension']), $web_odf_supported_files)) { @@ -220,6 +192,8 @@ if (in_array(strtolower($pathinfo['extension']), $web_odf_supported_files)) { '; } +$execute_iframe = true; + if ($jplayer_supported) { $extension = api_strtolower($pathinfo['extension']); @@ -251,11 +225,46 @@ if ($jplayer_supported) { '.$jquery.' }); '; + $execute_iframe = false; +} +if ($show_web_odf) { + $execute_iframe = false; +} + +$is_nanogong_available = $pathinfo['extension']=='wav' && preg_match('/_chnano_.wav/i', $file_url_web) && api_get_setting('enable_nanogong') == 'true'; +if ($is_nanogong_available){ + $execute_iframe = false; +} + +if (!$jplayer_supported && $execute_iframe) { + + $htmlHeadXtra[] = ''; + $htmlHeadXtra[] = ''; + $htmlHeadXtra[] = ''; } + Display::display_header(''); -$execute_iframe = true; echo '
'; $file_url_web = api_get_path(WEB_COURSE_PATH).$_course['path'].'/document'.$header_file.'?'.api_get_cidreq(); @@ -268,19 +277,17 @@ if (in_array(strtolower($pathinfo['extension']) , array('html', "htm"))) { if ($show_web_odf) { //echo Display::url(get_lang('Show'), api_get_path(WEB_CODE_PATH).'document/edit_odf.php?id='.$document_data['id'], array('class' => 'btn')); - echo '
'; - $execute_iframe = false; + echo '
'; } echo '
'; -if ($jplayer_supported) { +if ($jplayer_supported) { echo '
'; echo DocumentManager::generate_video_preview($document_data); - echo '
'; - $execute_iframe = false; + echo ''; } -if ($pathinfo['extension']=='wav' && preg_match('/_chnano_.wav/i', $file_url_web) && api_get_setting('enable_nanogong') == 'true'){ +if ($is_nanogong_available){ echo '
'; echo '
'; echo ''; @@ -289,8 +296,7 @@ if ($pathinfo['extension']=='wav' && preg_match('/_chnano_.wav/i', $file_url_web echo ''; echo ''; echo ''; - echo '
'; - $execute_iframe = false; + echo ''; } if ($execute_iframe) {