From c6b3b53fe0e025913933b96f38f7f8ac4da94eda Mon Sep 17 00:00:00 2001 From: Eric Marguin Date: Tue, 28 Nov 2006 16:16:49 +0100 Subject: [PATCH] [svn r10238] add the audiorecorder admin + creation --- main/admin/configure_extensions.php | 10 +++++++++ main/newscorm/audiorecorder.inc.php | 35 +++++++++++++++++++++++++++++ main/newscorm/learnpath.class.php | 8 +++++++ 3 files changed, 53 insertions(+) create mode 100644 main/newscorm/audiorecorder.inc.php diff --git a/main/admin/configure_extensions.php b/main/admin/configure_extensions.php index 365c3e27ee..d854cb8a06 100644 --- a/main/admin/configure_extensions.php +++ b/main/admin/configure_extensions.php @@ -109,6 +109,12 @@ if(isset($_POST['activeExtension'])){ WHERE variable="service_ppt2lp" AND subkey="user"'; api_sql_query($sql, __FILE__, __LINE__); + + $sql = 'UPDATE '.$tbl_settings_current.' SET + selected_value="'.addslashes($_POST['ppt2lp_path_to_lzx']).'" + WHERE variable="service_ppt2lp" + AND subkey="path_to_lzx"'; + api_sql_query($sql, __FILE__, __LINE__); break; } @@ -275,6 +281,10 @@ Display::display_header($nameTool); '.get_lang('FtpPassword').' : + + '.get_lang('PathToLzx').' : + + diff --git a/main/newscorm/audiorecorder.inc.php b/main/newscorm/audiorecorder.inc.php new file mode 100644 index 0000000000..1951d487a2 --- /dev/null +++ b/main/newscorm/audiorecorder.inc.php @@ -0,0 +1,35 @@ + + * @author Eric Marguin + */ + +/** + * this url should be removed with a path to another Application + */ + +$params = "?lzt=swf&lzr=swf8&document_id=".$_GET['id']."&dbName=".$_SESSION["_course"]["dbName"]."&user_id=".$_SESSION["_user"]["user_id"] ; +$path_to_lzx = api_get_setting('service_ppt2lp','path_to_lzx'); +if(!empty($path_to_lzx)){ + + $path_to_lzx .= $params; + printf (" + + + + + + + + + + ", $path_to_lzx,Database::get_course_table('lp_item'),$_course["dbName"],$_user["user_id"],$path_to_lzx); +} + +?> diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index e1ce976d6b..1d0aa5f848 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -5941,7 +5941,15 @@ class learnpath { $return .= 'Delete the current item Delete'; + ob_start(); + if(api_get_setting('service_ppt2lp','active')=='true'){ + include('audiorecorder.inc.php'); + } + $return .= ob_get_contents(); + ob_end_clean(); + $return .= ''; + return $return; }