diff --git a/dokeos_license.txt b/dokeos_license.txt index 8c9d4d38ce..40f804e941 100644 --- a/dokeos_license.txt +++ b/dokeos_license.txt @@ -7,6 +7,7 @@ Copyright (c) 2001 Universite catholique de Louvain (UCL) Copyright (c) 2003-2008 Vrije Universiteit Brussel (VUB) Copyright (c) 2004-2008 Hoogeschool Gent (HoGent) + Copyright (c) Denes Nagy (darkden@freemail.hu) For a full list of contributors detaining copyrights over parts of the Dokeos software, see "documentation/credits.html". The full license can be read in "documentation/license.html". diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index 2c059279f5..e199209f94 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -1786,9 +1786,9 @@ class learnpath { ' ' . "\n" . - ' ' . "\n" . + ' ' . "\n" . - ' ' . "\n" . + ' ' . "\n" . //' '."\n" . @@ -1814,9 +1814,9 @@ class learnpath { ' ' . "\n" . - ' ' . "\n" . + ' ' . "\n" . - ' ' . "\n" . + ' ' . "\n" . // ' '."\n" . @@ -2648,6 +2648,28 @@ class learnpath { } return $toc; } + /** + * Generate and return the table of contents for this learnpath. The JS + * table returned is used inside of scorm_api.php + * @return string A JS array vairiable construction + */ + function get_items_details_as_js($varname='olms.lms_item_types') { + if ($this->debug > 0) { + error_log('New LP - In learnpath::get_items_details_as_js()', 0); + } + $toc = $varname.' = new Array();'; + //echo "
".print_r($this->items,true)."
"; + foreach ($this->ordered_items as $item_id) { + if ($this->debug > 2) { + error_log('New LP - learnpath::get_items_details_as_js(): getting info for item ' . $item_id, 0); + } + $toc.= $varname."['i$item_id'] = '".$this->items[$item_id]->get_type()."';"; + } + if ($this->debug > 2) { + error_log('New LP - In learnpath::get_items_details_as_js() - TOC array: ' . print_r($toc, true), 0); + } + return $toc; + } /** * Gets the learning path type * @param boolean Return the name? If false, return the ID. Default is false. @@ -2714,70 +2736,6 @@ class learnpath { } return $list; } - /** - * Uses the table generated by get_toc() and returns an HTML-formatted string ready to display - * @return string HTML TOC ready to display - */ - /*function get_html_toc() - { - if($this->debug>0){error_log('New LP - In learnpath::get_html_toc()',0);} - $list = $this->get_toc(); - //echo $this->current; - //$parent = $this->items[$this->current]->get_parent(); - //if(empty($parent)){$parent = $this->ordered_items[$this->items[$this->current]->get_previous_index()];} - $html = '
'."\n" ; - // " onchange=\"javascript:document.getElementById('toc_$parent').focus();\">\n"; - require_once('resourcelinker.inc.php'); - - //temp variables - $mycurrentitemid = $this->get_current_item_id(); - - foreach($list as $item) - { - if($this->debug>2){error_log('New LP - learnpath::get_html_toc(): using item '.$item['id'],0);} - //TODO complete this - $icon_name = array('not attempted' => '../img/notattempted.gif', - 'incomplete' => '../img/incomplete.gif', - 'failed' => '../img/failed.gif', - 'completed' => '../img/completed.gif', - 'passed' => '../img/passed.gif', - 'succeeded' => '../img/succeeded.gif', - 'browsed' => '../img/completed.gif'); - - $style = 'scorm_item'; - if($item['id'] == $this->current){ - $style = 'scorm_item_highlight'; - } - //the anchor will let us center the TOC on the currently viewed item &^D - $html .= '
' . - ''.substr($item['status'],0,1).''; - - //$title = htmlspecialchars($item['title'],ENT_QUOTES,$this->encoding); - $title = $item['title']; - if(empty($title)){ - $title = rl_get_resource_name(api_get_course_id(),$this->get_id(),$item['id']); - $title = htmlspecialchars($title,ENT_QUOTES,$this->encoding); - } - if(empty($title))$title = '-'; - - if($item['type']!='dokeos_chapter' and $item['type']!='dir'){ - //$html .= "".$title."" ; - $url = $this->get_link('http',$item['id']); - //$html .= ''.$title.'' ; - //$html .= ''.$title.'' ; - $html .= ''.$title.'' ; - }else{ - $html .= $title; - } - $html .= "
\n"; - } - $html .= "
\n"; - return $html; - }*/ - /** * Uses the table generated by get_toc() and returns an HTML-formatted string ready to display * @return string HTML TOC ready to display @@ -2880,7 +2838,7 @@ class learnpath { //$html .= ''.$title.'' ; // background:#aaa; - $html .= '' . stripslashes($title) . ''; diff --git a/main/newscorm/lp_ajax_initialize.php b/main/newscorm/lp_ajax_initialize.php new file mode 100644 index 0000000000..d7b1bbb0dc --- /dev/null +++ b/main/newscorm/lp_ajax_initialize.php @@ -0,0 +1,173 @@ + + */ +/** + * Script + */ +//flag to allow for anonymous user - needs to be set before global.inc.php +$use_anonymous = true; +// name of the language file that needs to be included +$language_file[] = 'learnpath'; +require_once('back_compat.inc.php'); +/** + * Get one item's details + * @param integer LP ID + * @param integer user ID + * @param integer View ID + * @param integer Current item ID + * @param integer New item ID + */ +function initialize_item($lp_id,$user_id,$view_id,$next_item) +{ + $debug=0; + $return = ''; + if($debug>0){error_log('In initialize_item('.$lp_id.','.$user_id.','.$view_id.','.$next_item.')',0);} + //$objResponse = new xajaxResponse(); + /*$item_id may be one of: + * -'next' + * -'previous' + * -'first' + * -'last' + * - a real item ID + */ + require_once('learnpath.class.php'); + require_once('scorm.class.php'); + require_once('aicc.class.php'); + require_once('learnpathItem.class.php'); + require_once('scormItem.class.php'); + require_once('aiccItem.class.php'); + $mylp = ''; + if (isset($_SESSION['lpobject'])) { + if ($debug>1) {error_log('////$_SESSION[lpobject] is set',0);} + $oLP =& unserialize($_SESSION['lpobject']); + if (!is_object($oLP)) { + if($debug>1){error_log(print_r($oLP,true),0);} + if($debug>2){error_log('////Building new lp',0);} + unset($oLP); + $code = api_get_course_id(); + $mylp = & new learnpath($code,$lp_id,$user_id); + } else { + if($debug>1){error_log('////Reusing session lp',0);} + $mylp = & $oLP; + } + } + $mylp->set_current_item($next_item); + if ($debug>1) {error_log('In {default} - item is '.$new_item_id,0);} + $mylp->start_current_item(true); + /* + if ($mylp->force_commit) { + $mylp->save_current(); + } + */ + //$objResponse->addAlert(api_get_path(REL_CODE_PATH).'newscorm/learnpathItem.class.php'); + if (is_object($mylp->items[$next_item])) { + $mylpi = & $mylp->items[$next_item]; + } else { + if($debug>1){error_log('In switch_item_details - generating new item object',0);} + $mylpi =& new learnpathItem($next_item,$user_id); + $mylpi->set_lp_view($view_id); + } + /* + * now get what's needed by the SCORM API: + * -score + * -max + * -min + * -lesson_status + * -session_time + * -suspend_data + */ + $myscore = $mylpi->get_score(); + $mymax = $mylpi->get_max(); + if($mymax===''){$mymax="''";} + $mymin = $mylpi->get_min(); + $mylesson_status = $mylpi->get_status(); + $mylesson_location = $mylpi->get_lesson_location(); + $mytotal_time = $mylpi->get_scorm_time('js'); + $mymastery_score = $mylpi->get_mastery_score(); + $mymax_time_allowed = $mylpi->get_max_time_allowed(); + $mylaunch_data = $mylpi->get_launch_data(); + $mysession_time = $mylpi->get_total_time(); + $mysuspend_data = $mylpi->get_suspend_data(); + $mylesson_location = $mylpi->get_lesson_location(); + $myic = $mylpi->get_interactions_count(); + $myistring = ''; + for ($i=0;$i<$myic;$i++) { + $myistring .= ",[".$i.",'','','','','','','']"; + } + if (!empty($myistring)) { + $myistring = substr($myistring,1); + } + $return .= + "olms.score=".$myscore.";" . + "olms.max=".$mymax.";" . + "olms.min=".$mymin.";" . + "olms.lesson_status='".$mylesson_status."';" . + "olms.lesson_location='".$mylesson_location."';" . + "olms.session_time='".$mysession_time."';" . + "olms.suspend_data='".$mysuspend_data."';" . + "olms.total_time = '".$mytotal_time."';" . + "olms.mastery_score = '".$mymastery_score."';" . + "olms.max_time_allowed = '".$mymax_time_allowed."';" . + "olms.launch_data = '".$mylaunch_data."';" . + "olms.interactions = new Array(".$myistring.");" . + "olms.item_objectives = new Array();" . + "olms.G_lastError = 0;" . + "olms.G_LastErrorMessage = 'No error';" ; + /* + * and re-initialise the rest (proper to the LMS) + * -lms_lp_id + * -lms_item_id + * -lms_old_item_id + * -lms_new_item_id + * -lms_initialized + * -lms_progress_bar_mode + * -lms_view_id + * -lms_user_id + */ + $mytotal = $mylp->get_total_items_count_without_chapters(); + $mycomplete = $mylp->get_complete_items_count(); + $myprogress_mode = $mylp->get_progress_bar_mode(); + $myprogress_mode = ($myprogress_mode==''?'%':$myprogress_mode); + $mynext = $mylp->get_next_item_id(); + $myprevious = $mylp->get_previous_item_id(); + $myitemtype = $mylpi->get_type(); + $mylesson_mode = $mylpi->get_lesson_mode(); + $mycredit = $mylpi->get_credit(); + $mylaunch_data = $mylpi->get_launch_data(); + $myinteractions_count = $mylpi->get_interactions_count(); + $myobjectives_count = $mylpi->get_objectives_count(); + $mycore_exit = $mylpi->get_core_exit(); + + $return .= + "olms.lms_lp_id=".$lp_id.";" . + "olms.lms_item_id=".$next_item.";" . + "olms.lms_old_item_id=0;" . + "olms.lms_initialized=0;" . + "olms.lms_view_id=".$view_id.";" . + "olms.lms_user_id=".$user_id.";" . + "olms.next_item=".$next_item.";" . //this one is very important to replace possible literal strings + "olms.lms_next_item=".$mynext.";" . + "olms.lms_previous_item=".$myprevious.";" . + "olms.lms_item_type = '".$myitemtype."';" . + "olms.lms_item_credit = '".$mycredit."';" . + "olms.lms_item_lesson_mode = '".$mylesson_mode."';" . + "olms.lms_item_launch_data = '".$mylaunch_data."';" . + "olms.lms_item_interactions_count = '".$myinteractions_count."';" . + "olms.lms_item_objectives_count = '".$myinteractions_count."';" . + "olms.lms_item_core_exit = '".$mycore_exit."';" . + "olms.asset_timer = 0;"; + + $mylp->set_error_msg(''); + $mylp->prerequisites_match(); //check the prerequisites are all complete + if($debug>1){error_log('Prereq_match() returned '.htmlentities($mylp->error),0);} + //$_SESSION['scorm_item_id'] = $new_item_id;//Save the new item ID for the exercise tool to use + //$_SESSION['lpobject'] = serialize($mylp); + return $return; +} +echo initialize_item($_POST['lid'],$_POST['uid'],$_POST['vid'],$_POST['iid']); \ No newline at end of file diff --git a/main/newscorm/lp_ajax_save_item.php b/main/newscorm/lp_ajax_save_item.php index 22ca9c1007..58b6b4ff04 100755 --- a/main/newscorm/lp_ajax_save_item.php +++ b/main/newscorm/lp_ajax_save_item.php @@ -141,7 +141,7 @@ function save_item($lp_id,$user_id,$view_id,$item_id,$score=-1,$max=-1,$min=-1,$ if($mylpi->get_type()!='sco') { //if this object's JS status has not been updated by the SCORM API, update now //$objResponse->addScript("lesson_status='".$mystatus."';"); - $return .= "lesson_status='".$mystatus."';"; + $return .= "olms.lesson_status='".$mystatus."';"; } //$objResponse->addScript("update_toc('".$mystatus."','".$item_id."');"); $return .= "update_toc('".$mystatus."','".$item_id."');"; diff --git a/main/newscorm/lp_ajax_start_timer.php b/main/newscorm/lp_ajax_start_timer.php old mode 100755 new mode 100644 index 4a2dabca9c..d8ddb1c41a --- a/main/newscorm/lp_ajax_start_timer.php +++ b/main/newscorm/lp_ajax_start_timer.php @@ -16,6 +16,6 @@ function start_timer() $time = time(); //$objResponse->addScript("asset_timer='$time';asset_timer_total=0;"); //return $objResponse; - return "asset_timer='$time';asset_timer_total=0;"; + return "olms.asset_timer='$time';olms.asset_timer_total=0;"; } echo start_timer(); \ No newline at end of file diff --git a/main/newscorm/lp_ajax_switch_item.php b/main/newscorm/lp_ajax_switch_item.php index 6326ad0290..9433c02026 100644 --- a/main/newscorm/lp_ajax_switch_item.php +++ b/main/newscorm/lp_ajax_switch_item.php @@ -140,35 +140,38 @@ function switch_item_details($lp_id,$user_id,$view_id,$current_item,$next_item) if (!empty($myistring)) { $myistring = substr($myistring,1); } - //$objResponse->addScript( + /* + * The following lines should reinitialize the values for the SCO + * However, due to many complications, we are now relying more on the + * LMSInitialize() call and its underlying lp_ajax_initialize.php call + * so this code is technically deprecated (but the change of item_id should + * remain). However, due to numerous technical issues with SCORM, we prefer + * leaving it as a double-lock security. If removing, please test carefully + * with both SCORM and dokeos learning path tracking. + */ $return .= - "score=".$myscore.";" . - "max=".$mymax.";" . - "min=".$mymin.";" . - "lesson_status='".$mylesson_status."';" . - "lesson_location='".$mylesson_location."';" . - "session_time='".$mysession_time."';" . - "suspend_data='".$mysuspend_data."';" . - "total_time = '".$mytotal_time."';" . - "mastery_score = '".$mymastery_score."';" . - "max_time_allowed = '".$mymax_time_allowed."';" . - "launch_data = '".$mylaunch_data."';" . - "interactions = new Array(".$myistring.");" . - "item_objectives = new Array();" . - "G_lastError = 0;" . - "G_LastErrorMessage = 'No error';"; - //); + "olms.score=".$myscore.";" . + "olms.max=".$mymax.";" . + "olms.min=".$mymin.";" . + "olms.lesson_status='".$mylesson_status."';" . + "olms.lesson_location='".$mylesson_location."';" . + "olms.session_time='".$mysession_time."';" . + "olms.suspend_data='".$mysuspend_data."';" . + "olms.total_time = '".$mytotal_time."';" . + "olms.mastery_score = '".$mymastery_score."';" . + "olms.max_time_allowed = '".$mymax_time_allowed."';" . + "olms.launch_data = '".$mylaunch_data."';" . + "olms.interactions = new Array(".$myistring.");" . + "olms.item_objectives = new Array();" . + "olms.G_lastError = 0;" . + "olms.G_LastErrorMessage = 'No error';" ; /* * and re-initialise the rest - * -saved_lesson_status = 'not attempted' * -lms_lp_id * -lms_item_id * -lms_old_item_id * -lms_new_item_id - * -lms_been_synchronized * -lms_initialized - * -lms_total_lessons - * -lms_complete_lessons * -lms_progress_bar_mode * -lms_view_id * -lms_user_id @@ -187,48 +190,41 @@ function switch_item_details($lp_id,$user_id,$view_id,$current_item,$next_item) $myobjectives_count = $mylpi->get_objectives_count(); $mycore_exit = $mylpi->get_core_exit(); - //$objResponse->addScript( $return .= - "saved_lesson_status='not attempted';" . - "lms_lp_id=".$lp_id.";" . - "lms_item_id=".$new_item_id.";" . - "lms_old_item_id=0;" . - "lms_been_synchronized=0;" . - "lms_initialized=0;" . - "lms_total_lessons=".$mytotal.";" . - "lms_complete_lessons=".$mycomplete.";" . - "lms_progress_bar_mod='".$myprogress_mode."';" . - "lms_view_id=".$view_id.";" . - "lms_user_id=".$user_id.";" . - "next_item=".$new_item_id.";" . //this one is very important to replace possible literal strings - "lms_next_item=".$mynext.";" . - "lms_previous_item=".$myprevious.";" . - "lms_item_type = '".$myitemtype."';" . - "lms_item_credit = '".$mycredit."';" . - "lms_item_lesson_mode = '".$mylesson_mode."';" . - "lms_item_launch_data = '".$mylaunch_data."';" . - "lms_item_interactions_count = '".$myinteractions_count."';" . - "lms_item_objectives_count = '".$myinteractions_count."';" . - "lms_item_core_exit = '".$mycore_exit."';" . - "asset_timer = 0;"; + //"saved_lesson_status='not attempted';" . + "olms.lms_lp_id=".$lp_id.";" . + "olms.lms_item_id=".$new_item_id.";" . + "olms.lms_old_item_id=0;" . + //"lms_been_synchronized=0;" . + "olms.lms_initialized=0;" . + //"lms_total_lessons=".$mytotal.";" . + //"lms_complete_lessons=".$mycomplete.";" . + //"lms_progress_bar_mode='".$myprogress_mode."';" . + "olms.lms_view_id=".$view_id.";" . + "olms.lms_user_id=".$user_id.";" . + "olms.next_item=".$new_item_id.";" . //this one is very important to replace possible literal strings + "olms.lms_next_item=".$mynext.";" . + "olms.lms_previous_item=".$myprevious.";" . + "olms.lms_item_type = '".$myitemtype."';" . + "olms.lms_item_credit = '".$mycredit."';" . + "olms.lms_item_lesson_mode = '".$mylesson_mode."';" . + "olms.lms_item_launch_data = '".$mylaunch_data."';" . + "olms.lms_item_interactions_count = '".$myinteractions_count."';" . + "olms.lms_item_objectives_count = '".$myinteractions_count."';" . + "olms.lms_item_core_exit = '".$mycore_exit."';" . + "olms.asset_timer = 0;"; //); - //$objResponse->addScript("update_toc('unhighlight','".$current_item."');"); - //$objResponse->addScript("update_toc('highlight','".$new_item_id."');"); - //$objResponse->addScript("update_toc('$mylesson_status','".$new_item_id."');"); - //$objResponse->addScript("update_progress_bar('$mycomplete','$mytotal','$myprogress_mode');"); $return .= "update_toc('unhighlight','".$current_item."');". - "update_toc('highlight','".$new_item_id."');". - "update_toc('$mylesson_status','".$new_item_id."');". - "update_progress_bar('$mycomplete','$mytotal','$myprogress_mode');"; + "update_toc('highlight','".$new_item_id."');". + "update_toc('$mylesson_status','".$new_item_id."');". + "update_progress_bar('$mycomplete','$mytotal','$myprogress_mode');"; $mylp->set_error_msg(''); $mylp->prerequisites_match(); //check the prerequisites are all complete if($debug>1){error_log('Prereq_match() returned '.htmlentities($mylp->error),0);} - //$objResponse->addScript("update_message_frame('".str_replace("'","\'",htmlentities($mylp->error))."');"); - $return .= "update_message_frame('".str_replace("'","\'",api_htmlentities($mylp->error, ENT_QUOTES, api_get_system_encoding()))."');"; $_SESSION['scorm_item_id'] = $new_item_id;//Save the new item ID for the exercise tool to use $_SESSION['lpobject'] = serialize($mylp); return $return; //return $objResponse; } -echo switch_item_details($_GET['lid'],$_GET['uid'],$_GET['vid'],$_GET['iid'],$_GET['next']); +echo switch_item_details($_POST['lid'],$_POST['uid'],$_POST['vid'],$_POST['iid'],$_POST['next']); \ No newline at end of file diff --git a/main/newscorm/lp_ajax_switch_item_toc.php b/main/newscorm/lp_ajax_switch_item_toc.php new file mode 100644 index 0000000000..2f22ee076c --- /dev/null +++ b/main/newscorm/lp_ajax_switch_item_toc.php @@ -0,0 +1,186 @@ + + */ +/** + * Script + */ +//flag to allow for anonymous user - needs to be set before global.inc.php +$use_anonymous = true; +// name of the language file that needs to be included +$language_file[] = 'learnpath'; +require_once('back_compat.inc.php'); +/** + * Get one item's details + * @param integer LP ID + * @param integer user ID + * @param integer View ID + * @param integer Current item ID + * @param integer New item ID + */ +function switch_item_toc($lp_id,$user_id,$view_id,$current_item,$next_item) +{ + $debug=0; + $return = ''; + if($debug>0){error_log('In xajax_switch_item_toc('.$lp_id.','.$user_id.','.$view_id.','.$current_item.','.$next_item.')',0);} + require_once('learnpath.class.php'); + require_once('scorm.class.php'); + require_once('aicc.class.php'); + require_once('learnpathItem.class.php'); + require_once('scormItem.class.php'); + require_once('aiccItem.class.php'); + $mylp = ''; + if(isset($_SESSION['lpobject'])) + { + if($debug>1){error_log('////$_SESSION[lpobject] is set',0);} + $oLP =& unserialize($_SESSION['lpobject']); + if(!is_object($oLP)){ + if($debug>1){error_log(print_r($oLP,true),0);} + if($debug>2){error_log('////Building new lp',0);} + unset($oLP); + $code = api_get_course_id(); + $mylp = & new learnpath($code,$lp_id,$user_id); + }else{ + if($debug>1){error_log('////Reusing session lp',0);} + $mylp = & $oLP; + } + } + $new_item_id = 0; + switch($next_item){ + case 'next': + $mylp->set_current_item($current_item); + $mylp->next(); + $new_item_id = $mylp->get_current_item_id(); + if($debug>1){error_log('In {next} - next item is '.$new_item_id.'(current: '.$current_item.')',0);} + break; + case 'previous': + $mylp->set_current_item($current_item); + $mylp->previous(); + $new_item_id = $mylp->get_current_item_id(); + if($debug>1){error_log('In {previous} - next item is '.$new_item_id.'(current: '.$current_item.')',0);} + break; + case 'first': + $mylp->set_current_item($current_item); + $mylp->first(); + $new_item_id = $mylp->get_current_item_id(); + if($debug>1){error_log('In {first} - next item is '.$new_item_id.'(current: '.$current_item.')',0);} + break; + case 'last': + break; + default: + //should be filtered to check it's not hacked + if($next_item == $current_item){ + //if we're opening the same item again + $mylp->items[$current_item]->restart(); + } + $new_item_id = $next_item; + $mylp->set_current_item($new_item_id); + if($debug>1){error_log('In {default} - next item is '.$new_item_id.'(current: '.$current_item.')',0);} + break; + } + $mylp->start_current_item(true); + if($mylp->force_commit){ + $mylp->save_current(); + } + //$objResponse->addAlert(api_get_path(REL_CODE_PATH).'newscorm/learnpathItem.class.php'); + if(is_object($mylp->items[$new_item_id])){ + $mylpi = & $mylp->items[$new_item_id]; + }else{ + if($debug>1){error_log('In switch_item_details - generating new item object',0);} + $mylpi =& new learnpathItem($new_item_id,$user_id); + $mylpi->set_lp_view($view_id); + } + /* + * now get what's needed by the SCORM API: + * -score + * -max + * -min + * -lesson_status + * -session_time + * -suspend_data + */ + $myscore = $mylpi->get_score(); + $mymax = $mylpi->get_max(); + if($mymax===''){$mymax="''";} + $mymin = $mylpi->get_min(); + $mylesson_status = $mylpi->get_status(); + $mylesson_location = $mylpi->get_lesson_location(); + $mytotal_time = $mylpi->get_scorm_time('js'); + $mymastery_score = $mylpi->get_mastery_score(); + $mymax_time_allowed = $mylpi->get_max_time_allowed(); + $mylaunch_data = $mylpi->get_launch_data(); + /* + if($mylpi->get_type() == 'asset'){ + //temporary measure to save completion of an asset. Later on, Dokeos should trigger something on unload, maybe... (even though that would mean the last item cannot be completed) + $mylesson_status = 'completed'; + $mylpi->set_status('completed'); + $mylpi->save(); + } + */ + $mysession_time = $mylpi->get_total_time(); + $mysuspend_data = $mylpi->get_suspend_data(); + $mylesson_location = $mylpi->get_lesson_location(); + $myic = $mylpi->get_interactions_count(); + $myistring = ''; + for ($i=0;$i<$myic;$i++) { + $myistring .= ",[".$i.",'','','','','','','']"; + } + if (!empty($myistring)) { + $myistring = substr($myistring,1); + } + $mytotal = $mylp->get_total_items_count_without_chapters(); + $mycomplete = $mylp->get_complete_items_count(); + $myprogress_mode = $mylp->get_progress_bar_mode(); + $myprogress_mode = ($myprogress_mode==''?'%':$myprogress_mode); + $mynext = $mylp->get_next_item_id(); + $myprevious = $mylp->get_previous_item_id(); + $myitemtype = $mylpi->get_type(); + $mylesson_mode = $mylpi->get_lesson_mode(); + $mycredit = $mylpi->get_credit(); + $mylaunch_data = $mylpi->get_launch_data(); + $myinteractions_count = $mylpi->get_interactions_count(); + $myobjectives_count = $mylpi->get_objectives_count(); + $mycore_exit = $mylpi->get_core_exit(); + + $return .= + //"saved_lesson_status='not attempted';" . + "olms.lms_lp_id=".$lp_id.";" . + "olms.lms_item_id=".$new_item_id.";" . + "olms.lms_old_item_id=0;" . + //"lms_been_synchronized=0;" . + "olms.lms_initialized=0;" . + //"lms_total_lessons=".$mytotal.";" . + //"lms_complete_lessons=".$mycomplete.";" . + //"lms_progress_bar_mode='".$myprogress_mode."';" . + "olms.lms_view_id=".$view_id.";" . + "olms.lms_user_id=".$user_id.";" . + "olms.next_item=".$new_item_id.";" . //this one is very important to replace possible literal strings + "olms.lms_next_item=".$mynext.";" . + "olms.lms_previous_item=".$myprevious.";" . + "olms.lms_item_type = '".$myitemtype."';" . + "olms.lms_item_credit = '".$mycredit."';" . + "olms.lms_item_lesson_mode = '".$mylesson_mode."';" . + "olms.lms_item_launch_data = '".$mylaunch_data."';" . + "olms.lms_item_interactions_count = '".$myinteractions_count."';" . + "olms.lms_item_objectives_count = '".$myinteractions_count."';" . + "olms.lms_item_core_exit = '".$mycore_exit."';" . + "olms.asset_timer = 0;"; + //); + $return .= "update_toc('unhighlight','".$current_item."');". + "update_toc('highlight','".$new_item_id."');". + "update_toc('$mylesson_status','".$new_item_id."');". + "update_progress_bar('$mycomplete','$mytotal','$myprogress_mode');"; + + $mylp->set_error_msg(''); + $mylp->prerequisites_match(); //check the prerequisites are all complete + if($debug>1){error_log('Prereq_match() returned '.htmlentities($mylp->error),0);} + $_SESSION['scorm_item_id'] = $new_item_id;//Save the new item ID for the exercise tool to use + $_SESSION['lpobject'] = serialize($mylp); + return $return; + //return $objResponse; + } +echo switch_item_toc($_POST['lid'],$_POST['uid'],$_POST['vid'],$_POST['iid'],$_POST['next']); \ No newline at end of file diff --git a/main/newscorm/lp_view.php b/main/newscorm/lp_view.php index 1e672ac228..9fd484ba5c 100644 --- a/main/newscorm/lp_view.php +++ b/main/newscorm/lp_view.php @@ -71,16 +71,14 @@ $my_style=$platform_theme; Header ----------------------------------------------------------- */ -//$htmlHeadXtra[] = ''; -//$htmlHeadXtra[] = $xajax->getJavascript('../inc/lib/xajax/')."\n"; $htmlHeadXtra[] = ''; //jQuery -$htmlHeadXtra[] = ''; $htmlHeadXtra[] = ' - + initialLeftZoneHeight = document.getElementById('learning_path_toc').offsetHeight; + initialRightZoneHeight = document.getElementById('learning_path_right_zone').offsetHeight; + docHeight = document.body.clientHeight; + leftZoneHeightOccupied = docHeight - initialLeftZoneHeight; + rightZoneHeightOccupied = docHeight - initialRightZoneHeight; + document.body.style.overflow = 'hidden'; + updateContentHeight(); +} +window.onresize = updateContentHeight; +--> + + - - - - -
- -
+?> + +
+
- -
- - + +
+
-
-
get_preview_image()!=''): ?> - + get_preview_image()!='') { $picture = getimagesize(api_get_path(SYS_COURSE_PATH).api_get_course_path().'/upload/learning_path/images/'.$_SESSION['oLP']->get_preview_image()); - if($picture['1'] < 96) $style = ' style="padding-top:'.((94 -$picture['1'])/2).'px;" '; + if($picture['1'] < 96) { $style = ' style="padding-top:'.((94 -$picture['1'])/2).'px;" '; } $size = ($picture['0'] > 104 && $picture['1'] > 96 )? ' width="104" height="96" ': $style; - $flie = api_get_path(WEB_COURSE_PATH).api_get_course_path().'/upload/learning_path/images/'.$_SESSION['oLP']->get_preview_image(); - echo ''; - ?> -
-
+ $my_path = api_get_path(WEB_COURSE_PATH).api_get_course_path().'/upload/learning_path/images/'.$_SESSION['oLP']->get_preview_image(); + echo ''; + } else { + echo Display :: display_icon('unknown_250_100.jpg', ' '); + } + ?> + +
+
+
+ +
+ get_author() ?>
-
- -
- get_author() ?> -
- - - -
> - -
- - - -
-
get_html_toc(); ?> - - -
-
-
.
+ + +
> +
- + + + +
+
get_html_toc(); ?> + + scorm_debug)) { //only show log ?> + +
+
+
.
+
+ + +
- -
- - - +
- + - -
+ +
- - +
+ + initialLeftZoneHeight = document.getElementById('learning_path_toc').offsetHeight; + initialRightZoneHeight = document.getElementById('learning_path_right_zone').offsetHeight; + docHeight = document.body.clientHeight; + leftZoneHeightOccupied = docHeight - initialLeftZoneHeight; + rightZoneHeightOccupied = docHeight - initialRightZoneHeight; + document.body.style.overflow = 'hidden'; + updateContentHeight(); +} +window.onresize = updateContentHeight; +--> + + +$_setting['show_navigation_menu'] = $save_setting; \ No newline at end of file diff --git a/main/newscorm/scorm_api.php b/main/newscorm/scorm_api.php index ec6c36468a..bb390e2f12 100755 --- a/main/newscorm/scorm_api.php +++ b/main/newscorm/scorm_api.php @@ -1,26 +1,6 @@ @@ -28,7 +8,6 @@ * @version v 1.0 * @access public * @package dokeos.learnpath.scorm -============================================================================== */ /** * This script is divided into three sections. @@ -38,9 +17,7 @@ * and frames refresh */ /* -============================================================================== INIT SECTION -============================================================================== */ // if you open the imsmanifest.xml via local machine (f.ex.: file://c:/...), then the Apiwrapper.js @@ -61,21 +38,20 @@ require_once('scorm.class.php'); $file = (empty($_SESSION['file'])?'':$_SESSION['file']); $oLP = unserialize($_SESSION['lpobject']); $oItem = $oLP->items[$oLP->current]; -if(!is_object($oItem)){ +if (!is_object($oItem)) { error_log('New LP - scorm_api - Could not load oItem item',0); exit; } $autocomplete_when_80pct = 0; /* -============================================================================== - JavaScript Functions -============================================================================== -*/ -?>var scorm_logs='scorm_debug) or !api_is_course_admin())?'0':'3');?>'; //debug log level for SCORM. 0 = none, 1=light, 2=a lot, 3=all - displays logs in log frame + * JavaScript Functions + */ +?>var scorm_logs=scorm_debug) or !api_is_course_admin())?'0':'3');?>; //debug log level for SCORM. 0 = none, 1=light, 2=a lot, 3=all - displays logs in log frame var lms_logs=0; //debug log level for LMS actions. 0=none, 1=light, 2=a lot, 3=all //logit_lms('scormfunctions.php included',0); +// API Object initialization (eases access later on) function APIobject() { this.LMSInitialize=LMSInitialize; //for Scorm 1.2 this.Initialize=LMSInitialize; //for Scorm 1.3 @@ -94,23 +70,22 @@ function APIobject() { this.LMSGetDiagnostic=LMSGetDiagnostic; this.GetDiagnostic=LMSGetDiagnostic; this.Terminate=Terminate; //only in Scorm 1.3 - this.save_asset = dokeos_save_asset; + this.save_asset = lms_save_asset; this.void_save_asset = dokeos_void_save_asset; } -//it is not sure that the scos use the above declarations - -API = new APIobject(); //for scorm 1.2 -api = API; -//api = new APIobject(); //for scorm 1.2 -API_1484_11 = new APIobject(); //for scorm 1.3 -api_1484_11 = API_1484_11; -//api_1484_11 = new APIobject(); //for scorm 1.3 +// it is not sure that the scos use the above declarations. The following +// multiple declarations are to make sure we have an API object for each type of +// SCORM +var API = new APIobject(); //for scorm 1.2 +var api = API; +var API_1484_11 = new APIobject(); //for scorm 1.3 +var api_1484_11 = API_1484_11; -// Error codes +// SCORM-specific Error codes var G_NoError = 0; var G_GeneralException = 101; -var G_ServerBusy = 102; // this is not in the Scorm1.2_Runtime document +var G_ServerBusy = 102; // this is not in the Scorm1.2_Runtime document var G_InvalidArgumentError = 201; var G_ElementCannotHaveChildren = 202; var G_ElementIsNotAnArray = 203; @@ -121,122 +96,136 @@ var G_ElementIsReadOnly = 403; var G_ElementIsWriteOnly = 404; var G_IncorrectDataType = 405; -// Error messages -var G_NoErrorMessage = ''; -var G_GeneralExceptionMessage = 'General Exception'; -var G_ServerBusyMessage = 'Server busy'; // this is not in the Scorm1.2_Runtime document -var G_InvalidArgumentErrorMessage = 'Invalid argument error'; -var G_ElementCannotHaveChildrenMessage = 'Element cannot have children'; -var G_ElementIsNotAnArrayMessage = 'Element not an array. Cannot have count'; -var G_NotInitializedMessage = 'Not initialized'; -var G_NotImplementedErrorMessage = 'Not implemented error'; -var G_InvalidSetValueMessage = 'Invalid set value, element is a keyword'; -var G_ElementIsReadOnlyMessage = 'Element is read only'; -var G_ElementIsWriteOnlyMessage = 'Element is write only'; -var G_IncorrectDataTypeMessage = 'Incorrect Data Type'; - -var G_LastError = G_NoError ; -var G_LastErrorMessage = 'No error'; -//this is not necessary and is only provided to make bad Articulate contents shut up (and not trigger useless JS messages) -var G_LastErrorString = 'No error'; -status_info=new Array(); -var commit = false ; - -var variables_scorm = new Array('cmi.core.score.raw','cmi.core.score.max','cmi.core.score.min','cmi.core.lesson_location', -'cmi.core.lesson_status','cmi.completion_status','cmi.core.session_time','cmi.score.scaled','cmi.success_status', -'cmi.suspend_data','cmi.core.exit','interactions'); - -var variable_to_send=new Array(); -var updatetable_to_list=new Array(); -var info_of_variable_to_send=new Array(); - -//Strictly scorm variables -var score=get_score();?>; -var max='get_max();?>'; -var min='get_min();?>'; -var lesson_status='get_status();?>'; -var session_time='get_scorm_time('js');?>'; -var suspend_data = 'get_suspend_data();?>'; -var lesson_location = 'get_lesson_location();?>'; -var total_time = 'get_scorm_time('js');?>'; -var mastery_score = 'get_mastery_score();?>'; -var launch_data = 'get_launch_data();?>'; -var max_time_allowed = 'get_max_time_allowed();?>'; -var interactions = new Array(get_interactions_js_array();?>); -item_objectives = new Array(); -info_lms_item=new Array(); -$(document).ready( function() { - info_lms_item[0]='get_id();?>'; - info_lms_item[1]='get_id();?>'; +// SCORM-specific Error messages +var G_NoErrorMessage = ''; +var G_GeneralExceptionMessage = 'General Exception'; +var G_ServerBusyMessage = 'Server busy'; // this is not in the Scorm1.2_Runtime document +var G_InvalidArgumentErrorMessage = 'Invalid argument error'; +var G_ElementCannotHaveChildrenMessage = 'Element cannot have children'; +var G_ElementIsNotAnArrayMessage = 'Element not an array. Cannot have count'; +var G_NotInitializedMessage = 'Not initialized'; +var G_NotImplementedErrorMessage = 'Not implemented error'; +var G_InvalidSetValueMessage = 'Invalid set value, element is a keyword'; +var G_ElementIsReadOnlyMessage = 'Element is read only'; +var G_ElementIsWriteOnlyMessage = 'Element is write only'; +var G_IncorrectDataTypeMessage = 'Incorrect Data Type'; + +var olms = new Object(); + +//the last recorded error message was: +olms.G_LastError = G_NoError ; +olms.G_LastErrorMessage = 'No error'; - $("#current_item_id").attr("value",get_id();?>); - $("#old_item").attr("value",get_id();?>); +//this is not necessary and is only provided to make bad Articulate contents shut up (and not trigger useless JS messages) +olms.G_LastErrorString = 'No error'; + +//these variables are provided for better control of the current status in the +// SCORM exchange +olms.commit = false; + +// informative array helping to select variables to save, later on +olms.scorm_variables = new Array( + 'cmi.core.score.raw', + 'cmi.core.score.max', + 'cmi.core.score.min', + 'cmi.core.lesson_location', + 'cmi.core.lesson_status', + 'cmi.completion_status', + 'cmi.core.session_time', + 'cmi.score.scaled', + 'cmi.success_status', + 'cmi.suspend_data', + 'cmi.core.exit', + 'interactions' +); + +// manage variables to save or not +olms.variable_to_send=new Array(); +// temporary list of variables (gets set to true when set through LMSSetValue) +olms.updatable_vars_list=new Array(); + +// Strictly scorm variables +olms.score=get_score();?>; +olms.max='get_max();?>'; +olms.min='get_min();?>'; +olms.lesson_status='get_status();?>'; +olms.session_time='get_scorm_time('js');?>'; +olms.suspend_data = 'get_suspend_data();?>'; +olms.lesson_location = 'get_lesson_location();?>'; +olms.total_time = 'get_scorm_time('js');?>'; +olms.mastery_score = 'get_mastery_score();?>'; +olms.launch_data = 'get_launch_data();?>'; +olms.max_time_allowed = 'get_max_time_allowed();?>'; +olms.interactions = new Array(get_interactions_js_array();?>); +olms.item_objectives = new Array(); +olms.info_lms_item=new Array(); + +// Dokeos internal variables (not SCORM) +// olms.saved_lesson_status = 'not attempted'; +olms.lms_lp_id = get_id();?>; +olms.lms_item_id = get_id();?>; +olms.lms_initialized = 0; +//olms.lms_total_lessons = get_total_items_count(); ?>; +//olms.lms_complete_lessons = get_complete_items_count();?>; +//olms.lms_progress_bar_mode = 'progress_bar_mode;?>'; +//if(lms_progress_bar_mode == ''){lms_progress_bar_mode='%';} +olms.lms_view_id = 'get_view();?>'; +if(olms.lms_view_id == ''){ olms.lms_view_id = 1;} +olms.lms_user_id = ''; +olms.lms_next_item = 'get_next_item_id();?>'; +olms.lms_previous_item = 'get_previous_item_id();?>'; +olms.lms_lp_type = 'get_type();?>'; +olms.lms_item_type = 'get_type();?>'; +olms.lms_item_credit = 'get_credit();?>'; +olms.lms_item_lesson_mode = 'get_lesson_mode();?>'; +olms.lms_item_launch_data = 'get_launch_data();?>'; +olms.lms_item_core_exit = 'get_core_exit();?>'; +get_items_details_as_js('olms.lms_item_types')?> + +olms.asset_timer = 0; - //var myiframe=document.getElementById('content_id'); - //myiframe.Events.AttachEvent("onclick", update_lp_item_id); - //myiframe.contentWindow.document.addEventListener("click", update_lp_item_id, false); +//Backup for old values +//var olms.old_score = 0; +//var old_max = 0; +//var old_min = 0; +//var old_lesson_status = ''; +//var old_session_time = ''; +//var old_suspend_data = ''; +//var olms.lms_old_item_id = 0; - } ); +olms.execute_stats=false; +// Initialize stuff when the page is loaded $(document).ready( function() { - $("iframe#content_id").load( function(){ - //alert("Document title: " + $("iframe#content_id").attr('src')); - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]= info_lms_item[1]; - - if (lms_lp_type == 2) { //Only scorm - attach_glossary_into_scorm(); - } - - - }); + // + olms.info_lms_item[0]='get_id();?>'; + olms.info_lms_item[1]='get_id();?>'; + + $("#content_id").load( function(){ + olms.info_lms_item[0]=olms.info_lms_item[1]; + + if (olms.lms_lp_type == 2) { //Only scorm + attach_glossary_into_scorm(); + } + + if (olms.lms_item_types['i'+olms.info_lms_item[1]] != 'sco') { + LMSInitialize(); + } + }); }); -//Dokeos internal variables -var saved_lesson_status = 'not attempted'; -var lms_lp_id = get_id();?>; -var lms_item_id = get_id();?>; -//var lms_new_item_id = 0; //temporary value (only there between a load_item() and a LMSInitialize()) -var lms_been_synchronized = 0; -var lms_initialized = 0; -var lms_total_lessons = get_total_items_count(); ?>; -var lms_complete_lessons = get_complete_items_count();?>; -var lms_progress_bar_mode = 'progress_bar_mode;?>'; -if(lms_progress_bar_mode == ''){lms_progress_bar_mode='%';} -var lms_view_id = 'get_view();?>'; -if(lms_view_id == ''){ lms_view_id = 1;} -var lms_user_id = ''; -var lms_next_item = 'get_next_item_id();?>'; -var lms_previous_item = 'get_previous_item_id();?>'; -var lms_lp_type = 'get_type();?>'; -var lms_item_type = 'get_type();?>'; -var lms_item_credit = 'get_credit();?>'; -var lms_item_lesson_mode = 'get_lesson_mode();?>'; -var lms_item_launch_data = 'get_launch_data();?>'; -var lms_item_core_exit = 'get_core_exit();?>'; -var asset_timer = 0; - -//Backup for old values -var old_score = 0; -var old_max = 0; -var old_min = 0; -var old_lesson_status = ''; -var old_session_time = ''; -var old_suspend_data = ''; -var lms_old_item_id = 0; - -var execute_stats='false'; - - - /** - * Function called mandatorily by the SCORM content to start the SCORM communication + * The following section represents a set of mandatory functions for SCORM + */ +/** + * Function called mandatorily by the SCORM content to start the SCORM comm + * @return string 'true' or 'false'. Returning a string is mandatory (SCORM). */ function LMSInitialize() { //this is the initialize function of all APIobjects @@ -246,42 +235,83 @@ function LMSInitialize() { //this is the initialize function of all APIobjects * and that kind of stuff, so when the content loads in the content frame * it will have all the correct variables set */ - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; - //reinit to list - reinit_update_table_list () + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; + - lms_initialized=0; + olms.lms_initialized=0; // if there are more parameters than "" if (arguments.length>1) { - G_LastError = G_InvalidArgumentError; - G_LastErrorMessage = G_InvalidArgumentErrorMessage; + olms.G_LastError = G_InvalidArgumentError; + olms.G_LastErrorMessage = G_InvalidArgumentErrorMessage; logit_scorm('Error '+ G_InvalidArgumentError + G_InvalidArgumentErrorMessage, 0); return('false'); } else { - logit_scorm('LMSInitialise()',0); - lms_initialized=1; - return('true'); + //reinit the list of modified variables + reinit_updatable_vars_list(); + // Get LMS values for this item + params = { + 'lid': olms.lms_lp_id, + 'uid': olms.lms_user_id, + 'vid': olms.lms_view_id, + 'iid': olms.lms_item_id + }; + $.ajax({ + type: "POST", + url: "lp_ajax_initialize.php", + data: params, + dataType: 'script', + async: false + }); + // log a more complete object dump when initializing, so we know what data hasn't been cleaned + var log = '
item : '+ olms.lms_item_id + + '
item_type : '+ olms.lms_item_type + + '
score : '+ olms.score + + '
max : '+ olms.max + + '
min : '+ olms.min + + '
lesson_status : '+ olms.lesson_status + + '
session_time : '+ olms.session_time + + '
lesson_location : '+ olms.lesson_location + + '
suspend_data : '+ olms.suspend_data + + '
total_time : '+ olms.total_time + + '
mastery_score : '+ olms.mastery_score + + '
max_time_allowed: '+ olms.max_time_allowed + + '
lms_lp_id : '+olms.lms_lp_id + + '
lms_user_id: '+olms.lms_user_id + + '
lms_view_id: '+olms.lms_view_id + ; + + logit_scorm('LMSInitialize()'+log,0); + olms.lms_initialized=1; + return('true'); } } +/** + * Twin sister of LMSInitialize(). Only provided for backwards compatibility. + */ function Initialize() { //this is the initialize function of all APIobjects return LMSInitialize(); } +/** + * Gets a value in the current SCORM context and returns it to the calling SCO + * @param string The name of the value we want + * @return string All return values must be string (see SCORM) + */ function LMSGetValue(param) { //logit_scorm("LMSGetValue('"+param+"')",1); - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; var result=''; // the LMSInitialize is missing - if (lms_initialized == 0) { - G_LastError = G_NotInitialized; - G_LastErrorMessage = G_NotInitializedMessage; - logit_scorm('Error '+ G_NotInitialized + ' ' +G_NotInitializedMessage, 0); + if (olms.lms_initialized == 0) { + olms.G_LastError = G_NotInitialized; + olms.G_LastErrorMessage = G_NotInitializedMessage; + logit_scorm('LMSGetValue('+param+'):
=> Error '+ G_NotInitialized + ' ' +G_NotInitializedMessage, 0); return ''; } @@ -296,8 +326,8 @@ function LMSGetValue(param) param == 'cmi.comments' || param == 'cmi.comments_from_lms' ) { // the value is not supported - G_lastError = G_NotImplementedError ; - G_lastErrorString = G_NotImplementedErrorMessage; + olms.G_LastError = G_NotImplementedError ; + olms.G_LastErrorString = G_NotImplementedErrorMessage; logit_scorm("LMSGetValue ('"+param+"') Error '"+G_NotImplementedErrorMessage+"'",1); result = ''; return result; @@ -308,9 +338,9 @@ function LMSGetValue(param) result='entry, exit, lesson_status, student_id, student_name, lesson_location, total_time, credit, lesson_mode, score, session_time'; }else if(param == 'cmi.core.entry'){ // ---- cmi.core.entry - if(lms_item_core_exit=='none') { + if(olms.lms_item_core_exit=='none') { result='ab-initio'; - } else if(lms_item_core_exit=='suspend') { + } else if(olms.lms_item_core_exit=='suspend') { result='resume'; } else { result=''; @@ -318,14 +348,14 @@ function LMSGetValue(param) }else if(param == 'cmi.core.exit'){ // ---- cmi.core.exit result=''; - G_LastError = G_ElementIsWriteOnly; + olms.G_LastError = G_ElementIsWriteOnly; }else if(param == 'cmi.core.session_time'){ result=''; - G_LastError = G_ElementIsWriteOnly; + olms.G_LastError = G_ElementIsWriteOnly; }else if(param == 'cmi.core.lesson_status'){ // ---- cmi.core.lesson_status - if(lesson_status != '') { - result=lesson_status; + if(olms.lesson_status != '') { + result=olms.lesson_status; } else { //result='not attempted'; } @@ -340,51 +370,51 @@ function LMSGetValue(param) ?> }else if(param == 'cmi.core.lesson_location'){ // ---- cmi.core.lesson_location - result=lesson_location; + result=olms.lesson_location; }else if(param == 'cmi.core.total_time'){ // ---- cmi.core.total_time - result=total_time; + result=olms.total_time; }else if(param == 'cmi.core.score._children'){ // ---- cmi.core.score._children result='raw,min,max'; }else if(param == 'cmi.core.score.raw'){ // ---- cmi.core.score.raw - result=score; + result=olms.score; }else if(param == 'cmi.core.score.max'){ // ---- cmi.core.score.max - result=max; + result=olms.max; }else if(param == 'cmi.core.score.min'){ // ---- cmi.core.score.min - result=min; + result=olms.min; }else if(param == 'cmi.core.score'){ // ---- cmi.core.score -- non-standard item, provided as cmi.core.score.raw just in case - result=score; + result=olms.score; }else if(param == 'cmi.core.credit'){ // ---- cmi.core.credit - result = lms_item_credit; + result = olms.lms_item_credit; }else if(param == 'cmi.core.lesson_mode'){ // ---- cmi.core.lesson_mode - result = lms_item_lesson_mode; + result = olms.lms_item_lesson_mode; }else if(param == 'cmi.suspend_data'){ // ---- cmi.suspend_data - result = suspend_data; + result = olms.suspend_data; }else if(param == 'cmi.launch_data'){ // ---- cmi.launch_data - result = lms_item_launch_data; + result = olms.lms_item_launch_data; }else if(param == 'cmi.objectives._children'){ // ---- cmi.objectives._children result = 'id,score,status'; }else if(param == 'cmi.objectives._count'){ // ---- cmi.objectives._count //result='get_view_count();?>'; - result = item_objectives.length; + result = olms.item_objectives.length; }else if(param.substring(0,15)== 'cmi.objectives.'){ var myres = ''; if(myres = param.match(/cmi.objectives.(\d+).(id|score|status|_children)(.*)/)) { var obj_id = myres[1]; var req_type = myres[2]; - if(item_objectives[obj_id]==null) + if(olms.item_objectives[obj_id]==null) { if(req_type == 'id') { @@ -395,8 +425,8 @@ function LMSGetValue(param) if(myres[3]==null) { result = ''; - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; }else if (myres[3] == '._children'){ result = 'raw,min,max'; //non-standard, added for NetG }else if (myres[3] == '.raw'){ @@ -407,8 +437,8 @@ function LMSGetValue(param) result = ''; }else{ result = ''; - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; } }else if(req_type == 'status'){ result = 'not attempted'; @@ -419,47 +449,47 @@ function LMSGetValue(param) //the object is not null if(req_type == 'id') { - result = item_objectives[obj_id][0]; + result = olms.item_objectives[obj_id][0]; }else if(req_type == '_children'){ result = 'id,score,status'; }else if(req_type == 'score'){ if(myres[3]==null) { result = ''; - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; }else if (myres[3] == '._children'){ result = 'raw,min,max'; //non-standard, added for NetG }else if (myres[3] == '.raw'){ - if(item_objectives[obj_id][2] != null) + if(olms.item_objectives[obj_id][2] != null) { - result = item_objectives[obj_id][2]; + result = olms.item_objectives[obj_id][2]; }else{ result = ''; } }else if (myres[3] == '.max'){ - if(item_objectives[obj_id][3] != null) + if(olms.item_objectives[obj_id][3] != null) { - result = item_objectives[obj_id][3]; + result = olms.item_objectives[obj_id][3]; }else{ result = ''; } }else if (myres[3] == '.min'){ - if(item_objectives[obj_id][4] != null) + if(olms.item_objectives[obj_id][4] != null) { - result = item_objectives[obj_id][4]; + result = olms.item_objectives[obj_id][4]; }else{ result = ''; } }else{ result = ''; - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; } }else if(req_type == 'status'){ - if(item_objectives[obj_id][1] != null) + if(olms.item_objectives[obj_id][1] != null) { - result = item_objectives[obj_id][1]; + result = olms.item_objectives[obj_id][1]; }else{ result = 'not attempted'; } @@ -471,21 +501,21 @@ function LMSGetValue(param) result = 'mastery_score,max_time_allowed'; }else if(param == 'cmi.student_data.mastery_score'){ // ---- cmi.student_data.mastery_score - result = mastery_score; + result = olms.mastery_score; }else if(param == 'cmi.student_data.max_time_allowed'){ // ---- cmi.student_data.max_time_allowed - result = max_time_allowed; + result = olms.max_time_allowed; }else if(param == 'cmi.interactions._count'){ // ---- cmi.interactions._count - result = interactions.length; + result = olms.interactions.length; }else if(param == 'cmi.interactions._children'){ // ---- cmi.interactions._children result = 'id,time,type,correct_responses,weighting,student_response,result,latency'; }else{ // ---- anything else // Invalid argument error - G_lastError = G_InvalidArgumentError ; - G_lastErrorString = G_InvalidArgumentErrorMessage; + olms.G_LastError = G_InvalidArgumentError ; + olms.G_LastErrorString = G_InvalidArgumentErrorMessage; logit_scorm("LMSGetValue ('"+param+"') Error '"+G_InvalidArgumentErrorMessage+"'",1); result = ''; return result; @@ -493,167 +523,173 @@ function LMSGetValue(param) logit_scorm("LMSGetValue\n\t('"+param+"') returned '"+result+"'",1); return result; } - +/** + * Twin sister of LMSGetValue(). Only provided for backwards compatibility. + */ function GetValue(param) { return LMSGetValue(param); } - +/** + * Sets a SCORM variable's value through a call from the SCO. + * @param string The SCORM variable's name + * @param string The SCORM variable's new value + * @param string 'true','false' or an error code + */ function LMSSetValue(param, val) { logit_scorm("LMSSetValue\n\t('"+param+"','"+val+"')",0); - commit = true; //value has changed, need to re-commit - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; + olms.commit = true; //value has changed, need to re-commit + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; return_value = 'false'; if( param == "cmi.core.score.raw" ) { - score= val; - updatetable_to_list['cmi.core.score.raw']='true'; + olms.score= val; + olms.updatable_vars_list['cmi.core.score.raw']=true; return_value='true'; } else if ( param == "cmi.core.score.max" ) { - max = val; - updatetable_to_list['cmi.core.score.max']='true'; + olms.max = val; + olms.updatable_vars_list['cmi.core.score.max']=true; return_value='true'; } else if ( param == "cmi.core.score.min" ) { - min = val; - updatetable_to_list['cmi.core.score.min']='true'; + olms.min = val; + olms.updatable_vars_list['cmi.core.score.min']=true; return_value='true'; } else if ( param == "cmi.core.lesson_location" ) { - lesson_location = val; - updatetable_to_list['cmi.core.lesson_location']='true'; + olms.lesson_location = val; + olms.updatable_vars_list['cmi.core.lesson_location']=true; return_value='true'; } else if ( param == "cmi.core.lesson_status" ) { - saved_lesson_status = lesson_status; - lesson_status = val; - updatetable_to_list['cmi.core.lesson_status']='true'; + olms.lesson_status = val; + olms.updatable_vars_list['cmi.core.lesson_status']=true; return_value='true'; } else if ( param == "cmi.completion_status" ) { - lesson_status = val; - updatetable_to_list['cmi.completion_status']='true'; + olms.lesson_status = val; + olms.updatable_vars_list['cmi.completion_status']=true; return_value='true'; //1.3 } else if ( param == "cmi.core.session_time" ) { - session_time = val; - updatetable_to_list['cmi.core.session_time']='true'; + olms.session_time = val; + olms.updatable_vars_list['cmi.core.session_time']=true; return_value='true'; } else if ( param == "cmi.score.scaled") { //1.3 if(val<=1 && val>=-1) { - score = val ; - updatetable_to_list['cmi.score.scaled']='true'; + olms.score = val ; + olms.updatable_vars_list['cmi.score.scaled']=true; return_value='true'; } else { return_value='false'; } } else if ( param == "cmi.success_status" ) { success_status = val; - updatetable_to_list['cmi.success_status']='true'; + olms.updatable_vars_list['cmi.success_status']=true; return_value='true'; //1.3 } else if ( param == "cmi.suspend_data" ) { - suspend_data = val; - updatetable_to_list['cmi.suspend_data']='true'; + olms.suspend_data = val; + olms.updatable_vars_list['cmi.suspend_data']=true; return_value='true'; } else if ( param == "cmi.core.exit" ) { - lms_item_core_exit = val; - updatetable_to_list['cmi.core.exit']='true'; + olms.lms_item_core_exit = val; + olms.updatable_vars_list['cmi.core.exit']=true; return_value='true'; } else if ( param == "cmi.core.student_id" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.core.student_name" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.core.credit" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.core.entry" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.core.total_time" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.core.lesson_mode" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.comments_from_lms" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.student_data.time_limit_action" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.student_data.mastery_score" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.student_data.max_time_allowed" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.student_preference._children" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else if ( param == "cmi.launch_data" ) { - G_LastError = G_ElementIsReadOnly; + olms.G_LastError = G_ElementIsReadOnly; } else { var myres = new Array(); if(myres = param.match(/cmi.interactions.(\d+).(id|time|type|correct_responses|weighting|student_response|result|latency)(.*)/)) { - updatetable_to_list['interactions']='true'; + olms.updatable_vars_list['interactions']=true; elem_id = myres[1]; - if(elem_id > interactions.length) //interactions setting should start at 0 + if(elem_id > olms.interactions.length) //interactions setting should start at 0 { /* - G_LastError = G_InvalidArgumentError; - G_LastErrorString = 'Invalid argument (interactions)'; + olms.G_LastError = G_InvalidArgumentError; + olms.G_LastErrorString = 'Invalid argument (interactions)'; return_value = false; */ - interactions[0] = ['0','','','','','','','']; + olms.interactions[0] = ['0','','','','','','','']; } - if(interactions[elem_id] == null){ - interactions[elem_id] = ['','','','','','','','']; + if(olms.interactions[elem_id] == null){ + olms.interactions[elem_id] = ['','','','','','','','']; //id(0), type(1), time(2), weighting(3),correct_responses(4),student_response(5),result(6),latency(7) - interactions[elem_id][4] = new Array(); + olms.interactions[elem_id][4] = new Array(); } elem_attrib = myres[2]; switch(elem_attrib) { case "id": - interactions[elem_id][0] = val; + olms.interactions[elem_id][0] = val; logit_scorm("Interaction "+elem_id+"'s id updated",2); return_value='true'; break; case "time": - interactions[elem_id][2] = val; + olms.interactions[elem_id][2] = val; logit_scorm("Interaction "+elem_id+"'s time updated",2); return_value='true'; break; case "type": - interactions[elem_id][1] = val; + olms.interactions[elem_id][1] = val; logit_scorm("Interaction "+elem_id+"'s type updated",2); return_value='true'; break; case "correct_responses": //do nothing yet - interactions[elem_id][4].push(val); + olms.interactions[elem_id][4].push(val); logit_scorm("Interaction "+elem_id+"'s correct_responses not updated",2); return_value='true'; break; case "weighting": - interactions[elem_id][3] = val; + olms.interactions[elem_id][3] = val; logit_scorm("Interaction "+elem_id+"'s weighting updated",2); return_value='true'; break; case "student_response": - interactions[elem_id][5] = ''+val; + olms.interactions[elem_id][5] = ''+val; logit_scorm("Interaction "+elem_id+"'s student_response updated",2); return_value='true'; break; case "result": - interactions[elem_id][6] = val; + olms.interactions[elem_id][6] = val; logit_scorm("Interaction "+elem_id+"'s result updated",2); return_value='true'; break; case "latency": - interactions[elem_id][7] = val; + olms.interactions[elem_id][7] = val; logit_scorm("Interaction "+elem_id+"'s latency updated",2); return_value='true'; break; default: - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; } }else if(param.substring(0,15)== 'cmi.objectives.'){ var myres = ''; - updatetable_to_list['objectives']='true'; + olms.updatable_vars_list['objectives']=true; if(myres = param.match(/cmi.objectives.(\d+).(id|score|status)(.*)/)) { obj_id = myres[1]; - if(obj_id > item_objectives.length) //objectives setting should start at 0 + if(obj_id > olms.item_objectives.length) //objectives setting should start at 0 { - G_LastError = G_InvalidArgumentError; - G_LastErrorString = 'Invalid argument (objectives)'; + olms.G_LastError = G_InvalidArgumentError; + olms.G_LastErrorString = 'Invalid argument (objectives)'; return_value = false; } else @@ -665,51 +701,51 @@ function LMSSetValue(param, val) { } else { - if(item_objectives[obj_id]==null) + if(olms.item_objectives[obj_id]==null) { - item_objectives[obj_id] = ['','','','','']; + olms.item_objectives[obj_id] = ['','','','','']; } if( req_type == "id" ) { - //item_objectives[obj_id][0] = val.substring(51,57); - item_objectives[obj_id][0] = val; + //olms.item_objectives[obj_id][0] = val.substring(51,57); + olms.item_objectives[obj_id][0] = val; logit_scorm("Objective "+obj_id+"'s id updated",2); return_value = 'true'; } else if ( req_type == "score" ) { if (myres[3] == '._children'){ return_value = ''; - G_lastError = G_InvalidSetValue; - G_lastErrorString = 'Invalid set value, element is a keyword'; + olms.G_LastError = G_InvalidSetValue; + olms.G_LastErrorString = 'Invalid set value, element is a keyword'; }else if (myres[3] == '.raw'){ - item_objectives[obj_id][2] = val; + olms.item_objectives[obj_id][2] = val; logit_scorm("Objective "+obj_id+"'s score raw updated",2); return_value = 'true'; }else if (myres[3] == '.max'){ - item_objectives[obj_id][3] = val; + olms.item_objectives[obj_id][3] = val; logit_scorm("Objective "+obj_id+"'s score max updated",2); return_value = 'true'; }else if (myres[3] == '.min'){ - item_objectives[obj_id][4] = val; + olms.item_objectives[obj_id][4] = val; logit_scorm("Objective "+obj_id+"'s score min updated",2); return_value = 'true'; }else{ return_value = ''; - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; } } else if ( req_type == "status" ) { - item_objectives[obj_id][1] = val; + olms.item_objectives[obj_id][1] = val; logit_scorm("Objective "+obj_id+"'s status updated",2); return_value = 'true'; } else { - G_lastError = G_NotImplementedError; - G_lastErrorString = 'Not implemented yet'; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = 'Not implemented yet'; } } } } }else{ - G_lastError = G_NotImplementedError; - G_lastErrorString = G_NotImplementedErrorMessage; + olms.G_LastError = G_NotImplementedError; + olms.G_LastErrorString = G_NotImplementedErrorMessage; } } return(return_value); } - +/** + * Twin sister of LMSSetValue(). Only provided for backwards compatibility. + */ function SetValue(param, val) { return LMSSetValue(param, val); } - -function ProcessValueScorm () { - - for (i=0;i=0) && (score >= mastery_score)) { - lesson_status = 'passed'; - updatetable_to_list['cmi.core.lesson_status']='true'; - } else if( (mastery_score < 0) && (lms_lp_type != '2') && ( lesson_status == 'incomplete') && (score >= (0.8*max) ) ) { + //origin can be 'commit', 'finish' or 'terminate' (depending on the calling function) + if ((olms.lesson_status != 'completed') && (olms.lesson_status != 'passed') && (olms.mastery_score >=0) && (olms.score >= olms.mastery_score)) { + olms.lesson_status = 'passed'; + olms.updatable_vars_list['cmi.core.lesson_status']=true; + } else if( (olms.mastery_score < 0) && (olms.lms_lp_type != '2') && ( olms.lesson_status == 'incomplete') && (olms.score >= (0.8*olms.max) ) ) { //the status cannot be modified automatically by the LMS under SCORM 1.2's rules - lesson_status = 'completed'; - updatetable_to_list['cmi.core.lesson_status']='true'; + olms.lesson_status = 'completed'; + olms.updatable_vars_list['cmi.core.lesson_status']=true; ; } else { - /* + /* DEPRECATED * See notes in switch_item for why this has been disabled - if ((origin== 'finish' || origin == 'unload') && lesson_status != 'completed' && lesson_status != 'passed' && lesson_status != 'browsed' && lesson_status != 'failed' && lesson_status != 'incomplete') { + if ((origin== 'finish' || origin == 'unload') && olms.lesson_status != 'completed' && olms.lesson_status != 'passed' && olms.lesson_status != 'browsed' && olms.lesson_status != 'failed' && olms.lesson_status != 'incomplete') { // The SCORM1.2 Runtime object document says for the "cmi.core.lesson_status" variable: // Upon receiving the LMSFinish() call or the user navigates away, // the LMS should set the cmi.core.lesson_status for the SCO to 'completed' - logit_lms('the LMS did saving data (status='+lesson_status+' - interactions: '+ interactions.length +')',1); - if (mastery_score && mastery_score!= '' && score && score != '') { - if (score >= mastery_score) { - lesson_status = 'passed'; + logit_lms('the LMS did saving data (status='+olms.lesson_status+' - interactions: '+ olms.interactions.length +')',1); + if (olms.mastery_score && olms.mastery_score!= '' && olms.score && olms.score != '') { + if (olms.score >= olms.mastery_score) { + olms.lesson_status = 'passed'; } else { - lesson_status = 'failed'; + olms.lesson_status = 'failed'; } - updatetable_to_list['cmi.core.lesson_status']='true'; - } else if (mastery_score && mastery_score!= '') { - lesson_status = 'completed'; - updatetable_to_list['cmi.core.lesson_status']='true'; + olms.updatable_vars_list['cmi.core.lesson_status']=true; + } else if (olms.mastery_score && olms.mastery_score!= '') { + olms.lesson_status = 'completed'; + olms.updatable_vars_list['cmi.core.lesson_status']=true; } } */ } - my_get_value_scorm=new Array(); - my_get_value_scorm=ProcessValueScorm(); - - logit_lms('saving data (status='+lesson_status+' - interactions: '+ interactions.length +')',1); + logit_lms('saving data (status='+olms.lesson_status+' - interactions: '+ olms.interactions.length +')',1); - old_item_id=info_lms_item[0]; - // xajax_save_item is replaced to xajax_save_item_scorm for scorm LP's - //xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score, max, min, lesson_status, session_time, suspend_data, lesson_location, interactions, lms_item_core_exit); + old_item_id=olms.info_lms_item[0]; - xajax_save_item_scorm(lms_lp_id, lms_user_id, lms_view_id, old_item_id,my_get_value_scorm); - //info_lms_item[0] is old_item_id and info_lms_item[1] is current_item_id - info_lms_item[0]=info_lms_item[0]; - info_lms_item[1]=lms_item_id; + xajax_save_item_scorm(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, old_item_id); + //olms.info_lms_item[0] is old_item_id and olms.info_lms_item[1] is current_item_id + olms.info_lms_item[1]=olms.lms_item_id; - if(item_objectives.length>0) { - xajax_save_objectives(lms_lp_id,lms_user_id,lms_view_id,old_item_id,item_objectives); + if(olms.item_objectives.length>0) { + xajax_save_objectives(olms.lms_lp_id,olms.lms_user_id,olms.lms_view_id,old_item_id,olms.item_objectives); } - execute_stats='false'; + olms.execute_stats=false; //clean array - variable_to_send=new Array(); - my_get_value_scorm=new Array(); -} -/* - * See notes in switch_item for why this has been disabled -function savedata_onunload() { - savedata('unload'); + olms.variable_to_send=new Array(); } -*/ - +/** + * Send the Commit signal to the LMS (save the data for this element without + * closing the current process) + * From SCORM 1.2 RTE: If the API Adapter is caching values received from the + * SCO via an LMSSetValue(), this call requires that any values not yet + * persisted by the LMS be persisted. + * @param string Must be empty string for conformance with SCORM 1.2 + */ function LMSCommit(val) { logit_scorm('LMSCommit()',0); - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; - - savedata('commit'); - reinit_update_table_list(); - //commit = 'false' ; //now changes have been commited, no need to update until next SetValue() + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; + savedata('commit'); + reinit_updatable_vars_list(); + //commit = 'false' ; //now changes have been commited, no need to update until next SetValue() return('true'); } - +/** + * Twin sister of LMSCommit(). Only provided for backwards compatibility. + */ function Commit(val) { return LMSCommit(val); } - +/** + * Send the closure signal to the LMS. This saves the data and closes the current SCO. + * From SCORM 1.2 RTE: The SCO must call this when it has determined that it no + * longer needs to communicate with the LMS, if it successfully called + * LMSInitialize at any previous point. This call signifies two things: + * 1.The SCO can be assured that any data set using LMSSetValue() calls has been persisted by the LMS. + * 2.The SCO has finished communicating with the LMS. + * @param string + */ function LMSFinish(val) { - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; - // why commit==false? - if (( commit == false )) { - logit_scorm('LMSFinish() (no LMSCommit())',1); + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; + // if olms.commit == false, then the SCORM didn't ask for a commit, so we + // should at least report that + if (( olms.commit == false )) { + logit_scorm('LMSFinish() (no LMSCommit())',1); - } + } - //if ( commit == true ) { - logit_scorm('LMSFinish() called',1); - savedata('finish'); - commit = 'false' ; - //} + //if ( olms.commit == true ) { + logit_scorm('LMSFinish() called',1); + savedata('finish'); + olms.commit = false; + //} - //reinit to list - reinit_update_table_list() - return('true'); + //reinit the list of modified variables + reinit_updatable_vars_list() + return('true'); } - +/** + * Twin sister of LMSFinish(). Only provided for backwards compatibility. + */ function Finish(val) { - return LMSFinish(val); + return LMSFinish(val); } - +/** + * Returns the last error code as a string + * @return string Error code + */ function LMSGetLastError() { logit_scorm('LMSGetLastError()',1); - return(G_LastError.toString()); + return(olms.G_LastError.toString()); } - +/** + * Twin sister of LMSGetLastError(). Only provided for backwards compatibility. + */ function GetLastError() { return LMSGetLastError(); } - +/** + * Returns the last error code literal for a given error code + * @param int Error code + * @return string Last error + */ function LMSGetErrorString(errCode){ logit_scorm('LMSGetErrorString()',1); - return(G_LastErrorString); + return(olms.G_LastErrorString); } - +/** + * Twin sister of LMSGetErrorString(). Only provided for backwards compatibility. + */ function GetErrorString(errCode){ return LMSGetErrorString(errCode); } - +/** + * Returns a more explanatory, full English, error message + * @param int Error code + * @return string Diagnostic + */ function LMSGetDiagnostic(errCode){ logit_scorm('LMSGetDiagnostic()',1); return(API.LMSGetLastError()); } - +/** + * Twin sister of LMSGetDiagnostic(). Only provided for backwards compatibility. + */ function GetDiagnostic(errCode){ return LMSGetDiagnostic(errCode); } - +/** + * Acts as a "commit" + * This function is not standard SCORM 1.2 and is probably deprecated in all + * meanings of the term. + * @return string 'true' or 'false', depening on whether the LMS has initialized the SCORM process or not + */ function Terminate() { - if (lms_initialized == 0) { - G_LastError = G_NotInitialized; - G_LastErrorMessage = G_NotInitializedMessage; + if (olms.lms_initialized == 0) { + olms.G_LastError = G_NotInitialized; + olms.G_LastErrorMessage = G_NotInitializedMessage; logit_scorm('Error '+ G_NotInitialized + G_NotInitializedMessage, 0); return('false'); } else { logit_scorm('Terminate()',0); - G_LastError = G_NoError ; - G_LastErrorMessage = 'No error'; - commit = true; + olms.G_LastError = G_NoError ; + olms.G_LastErrorMessage = 'No error'; + olms.commit = true; savedata('terminate'); - return (true); + return ('true'); } } - /** * Defining the AJAX-object class to be made available from other frames */ @@ -916,7 +958,9 @@ function XAJAXobject() { this.xajax_save_item = xajax_save_item; } -//it is not sure that the scos use the above declarations +/** + * It is not sure that the SCOs use the above declarations + */ oXAJAX = new XAJAXobject(); oxajax = new XAJAXobject(); @@ -943,6 +987,7 @@ function addEvent(elm, evType, fn, useCapture){ * the current context as it acts on objects that should exist * on the page * possibly deprecated + * @todo Try to use $(document).unload(lms_save_asset()) instead of the addEvent() method */ function addListeners(){ //exit if the browser doesn't support ID or tag retrieval @@ -956,84 +1001,50 @@ function addListeners(){ return; } //assign event handlers to objects - if(lms_lp_type==1 || lms_item_type=='asset'){ + if(olms.lms_lp_type==1 || olms.lms_item_type=='asset'){ logit_lms('Dokeos LP or asset',2); //if this path is a Dokeos learnpath, then start manual save //when something is loaded in there - addEvent(window,'unload',dokeos_save_asset,false); + addEvent(window,'unload',lms_save_asset,false); logit_lms('Added event listener on content_id for unload',2); } - /* See notes in switch_item() for why this has been disabled - if (lms_lp_type==2) { - addEvent(window,'unload',savedata_onunload,false); - } - */ logit_lms('Quitting addListeners()',2); } -/** - * Load an item into the content frame: - * - making sure the previous item status have been saved - * - first updating the current item ID (to save the right item) - * - updating the frame src - * possibly deprecated - */ -function load_item(item_id,url){ - if(document.getElementById('content_id')) { - logit_lms('Loading item '+item_id,2); - var cont_f = document.getElementById('content_id'); - if(cont_f.src){ - lms_old_item_id = lms_item_id; - var lms_new_item_id = item_id; - //load new content page into content frame - if(lms_lp_type==1 || lms_item_type=='asset'){ - dokeos_save_asset(); - } - cont_f.src = url; - - update_toc('unhighlight',lms_old_item_id); - update_toc('highlight',lms_old_item_id); - return true; - } - logit_lms('cont_f.src has no properties',0); - } - logit_lms('content_id has no properties',0); - return false; -} /** * Save a Dokeos learnpath item's time and mark as completed upon * leaving it */ -function dokeos_save_asset(){ +function lms_save_asset(){ // only for dokeos lps - if (execute_stats=='true') { - execute_stats='false'; + if (olms.execute_stats==true) { + olms.execute_stats=false; } else { - execute_stats='true'; + olms.execute_stats=true; } - if(lms_lp_type==1 || lms_item_type=='asset'){ - logit_lms('dokeos_save_asset',2); - xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score, max, min, lesson_status, session_time, suspend_data, lesson_location,interactions, lms_item_core_exit); - if(item_objectives.length>0) + if(olms.lms_lp_type==1 || olms.lms_item_type=='asset'){ + logit_lms('lms_save_asset',2); + xajax_save_item(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, olms.lms_item_id, olms.score, olms.max, olms.min, olms.lesson_status, olms.session_time, olms.suspend_data, olms.lesson_location,olms.interactions, olms.lms_item_core_exit); + if(olms.item_objectives.length>0) { - xajax_save_objectives(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,item_objectives); + xajax_save_objectives(olms.lms_lp_id,olms.lms_user_id,olms.lms_view_id,olms.lms_item_id,olms.item_objectives); } } } /** * Save a Dokeos learnpath item's time and mark as completed upon leaving it. - * Same function as dokeos_save_asset() but saves it with empty params + * Same function as lms_save_asset() but saves it with empty params * to use values set from another side in the database. Only used by Dokeos quizzes. * Also save the score locally because it hasn't been done through SetValue(). * Saving the status will be dealt with by the XAJAX function. */ function dokeos_void_save_asset(myscore,mymax) { - logit_lms('dokeos_save_asset',2); - score = myscore; + logit_lms('lms_save_asset',2); + olms.score = myscore; if((mymax == null) || (mymax == '')){mymax = 100;} //assume a default of 100, otherwise the score will not get saved (see lpi->set_score()) - xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, myscore, mymax); + xajax_save_item(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, olms.lms_item_id, myscore, mymax); } /** @@ -1050,7 +1061,6 @@ function logit_scorm(message,priority){ } } - /** * Logs information about LMS activity into the log frame * @param string Message to log @@ -1063,9 +1073,8 @@ function logit_lms(message,priority){ } } } - /** - * update the Table Of Contents frame, by changing CSS styles, mostly + * Update the Table Of Contents frame, by changing CSS styles, mostly * @param string Action to be taken * @param integer Item id to update */ @@ -1094,8 +1103,8 @@ function update_toc(update_action,update_id,change_ids) break; case 'highlight': if (change_ids=='yes') { - lms_next_item = update_id; - lms_previous_item = update_id; + olms.lms_next_item = update_id; + olms.lms_previous_item = update_id; } myelem.attr('class',"scorm_item_highlight"); break; @@ -1143,8 +1152,11 @@ function update_toc(update_action,update_id,change_ids) return true; } +/** + * Update the stats frame using a reload of the frame to avoid unsynched data + */ function update_stats() { - if (execute_stats=='true') { + if (olms.execute_stats==true) { try { cont_f = document.getElementById('content_id'); cont_f.src="lp_controller.php?action=stats"; @@ -1153,8 +1165,27 @@ function update_stats() { return false; } } - execute_stats='false'; + olms.execute_stats=false; +} + +/** + * Update the stats frame using a reload of the frame to avoid unsynched data + */ +function update_stats_page() +{ + var myframe = document.getElementById('content_id'); + var mysrc = myframe.location.href; + if(mysrc == 'lp_controller.php?action=stats'){ + if(myframe && myframe.src){ + var mysrc = myframe.src; + myframe.src = mysrc; + } + // = mysrc; //refresh page + } + return true; } + + /** * Updates the progress bar with the new status. Prevents the need of a page refresh and flickering * @param integer Number of completed items @@ -1164,7 +1195,7 @@ function update_stats() { function update_progress_bar(nbr_complete, nbr_total, mode) { logit_lms('update_progress_bar('+nbr_complete+','+nbr_total+','+mode+')',2); - logit_lms('could update with data: '+lms_lp_id+','+lms_view_id+','+lms_user_id,2); + logit_lms('could update with data: '+olms.lms_lp_id+','+olms.lms_view_id+','+olms.lms_user_id,2); if(mode == ''){mode='%';} if(nbr_total == 0){nbr_total=1;} @@ -1192,32 +1223,35 @@ function update_progress_bar(nbr_complete, nbr_total, mode) return true; } +/** + * Analyses the variables that have been modified through this SCO's life and + * put them into an array for later shipping to lp_ajax_save_item.php + * @return array Array of SCO variables + */ +function process_scorm_values () { -function update_stats_page() -{ - var myframe = document.getElementById('content_id'); - var mysrc = myframe.location.href; - if(mysrc == 'lp_controller.php?action=stats'){ - if(myframe && myframe.src){ - var mysrc = myframe.src; - myframe.src = mysrc; - } - // = mysrc; //refresh page - } - return true; + for (i=0;i0) { + xajax_save_objectives(olms.lms_lp_id,olms.lms_user_id,olms.lms_view_id,olms.lms_item_id,olms.item_objectives); + } + } + +/* //(1) save the current item - logit_lms('Called switch_item with params '+lms_item_id+' and '+next_item+'',0); - if(lms_lp_type==1 || lms_item_type=='asset' || session_time == '0' || session_time == '0:00:00'){ - if (lms_lp_type==1) { - xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score, max, min, lesson_status, asset_timer, suspend_data, lesson_location,interactions, lms_item_core_exit); + if (olms.lms_lp_type==1 || olms.lms_item_type=='asset' || olms.session_time == '0' || olms.session_time == '0:00:00') { + if (olms.lms_lp_type==1) { + xajax_save_item(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, olms.lms_item_id, olms.score, olms.max, olms.min, olms.lesson_status, olms.asset_timer, olms.suspend_data, olms.lesson_location,olms.interactions, olms.lms_item_core_exit); } else { - my_get_value_scorm=new Array(); - my_get_value_scorm=ProcessValueScorm(); - xajax_save_item_scorm(lms_lp_id, lms_user_id, lms_view_id, lms_item_id,my_get_value_scorm); + xajax_save_item_scorm(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, olms.lms_item_id); } - if(item_objectives.length>0) { - xajax_save_objectives(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,item_objectives); - } + if (olms.item_objectives.length>0) { + xajax_save_objectives(olms.lms_lp_id,olms.lms_user_id,olms.lms_view_id,olms.lms_item_id,olms.item_objectives); + } }else{ +*/ /** * Because of SCORM 1.2's special rule about unsent commits and the fact * that a SCO should be SET TO 'completed' IF NO STATUS WAS SENT (and @@ -1269,113 +1352,117 @@ function switch_item(current_item, next_item){ * savedata(unload) (and then the status cannot be "incompleted" * anymore) */ - //if (lms_item_type=='sco' && lesson_status != 'completed' && lesson_status != 'passed' && lesson_status != 'browsed' && lesson_status != 'incomplete' && lesson_status != 'failed') { - /** - * savedata('finish') treats the special condition and saves the - * new status to the database, so switch_item_details() enjoys the - * new status - */ - //savedata('finish'); - //} - // xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score, max, min, lesson_status, session_time, suspend_data, lesson_location,interactions, lms_item_core_exit); + /* + if (olms.lms_item_type=='sco' && olms.lesson_status != 'completed' && olms.lesson_status != 'passed' && olms.lesson_status != 'browsed' && olms.lesson_status != 'incomplete' && olms.lesson_status != 'failed') { + // savedata('finish') treats the special condition and saves the + // new status to the database, so switch_item_details() enjoys the + // new status + savedata('finish'); + } + xajax_save_item(olms.lms_lp_id, olms.lms_user_id, olms.lms_view_id, olms.lms_item_id, olms.score, olms.max, olms.min, olms.lesson_status, olms.session_time, olms.suspend_data, olms.lesson_location,olms.interactions, olms.lms_item_core_exit); + */ +/* } - execute_stats=false; //(2) Refresh all the values inside this SCORM API object - use AJAX - xajax_switch_item_details(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,next_item); - - status_info.push(lesson_status); - - //current item - - //old item - //info_lms_item[0]=next_item; + xajax_switch_item_details(olms.lms_lp_id,olms.lms_user_id,olms.lms_view_id,olms.lms_item_id,next_item); +*/ - if (info_lms_item[1]==next_item && next_item!='next' && next_item!='previous') { - info_lms_item[0]=next_item; - info_lms_item[1]=next_item; + olms.execute_stats=false; + + // Considering info_lms_item[0] is initially the oldest and info_lms_item[1] + // is the newest item, and considering we are done switching the items now, + // we need to update these markers so that the new item is loaded when + // changing the document in the content frame + if (olms.info_lms_item[1]==next_item && next_item!='next' && next_item!='previous') { + olms.info_lms_item[0]=next_item; + olms.info_lms_item[1]=next_item; } else { if (next_item!='next' && next_item!='previous') { - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]=next_item; + olms.info_lms_item[0]=olms.info_lms_item[1]; + olms.info_lms_item[1]=next_item; } } - if (info_lms_item[0]==next_item && next_item!='next' && next_item!='previous') { - info_lms_item[0]=next_item; - info_lms_item[1]=next_item; + if (olms.info_lms_item[0]==next_item && next_item!='next' && next_item!='previous') { + olms.info_lms_item[0]=next_item; + olms.info_lms_item[1]=next_item; } else { if (next_item!='next' && next_item!='previous') { - info_lms_item[0]=info_lms_item[0]; - info_lms_item[1]=next_item; + olms.info_lms_item[0]=olms.info_lms_item[0]; + olms.info_lms_item[1]=next_item; } } //(3) open the new item in the content_id frame switch(next_item){ case 'next': - next_item = lms_next_item; - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]=lms_next_item; + next_item = olms.lms_next_item; + olms.info_lms_item[0]=olms.info_lms_item[1]; + olms.info_lms_item[1]=olms.lms_next_item; break; case 'previous': - next_item = lms_previous_item; - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]=lms_previous_item; + next_item = olms.lms_previous_item; + olms.info_lms_item[0]=olms.info_lms_item[1]; + olms.info_lms_item[1]=olms.lms_previous_item; break; default: break; } - var mysrc = 'lp_controller.php?action=content&lp_id='+lms_lp_id+'&item_id='+next_item; + var mysrc = 'lp_controller.php?action=content&lp_id='+olms.lms_lp_id+'&item_id='+next_item; var cont_f = $("#content_id"); mode == 'fullscreen'){ ?> cont_f = window.open(''+mysrc,'content_id','toolbar=0,location=0,status=0,scrollbars=1,resizable=1'); cont_f.onload=function(){ - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]= info_lms_item[1]; + olms.info_lms_item[0]=olms.info_lms_item[1]; } cont_f.onunload=function(){ - info_lms_item[0]=info_lms_item[1]; - info_lms_item[1]= info_lms_item[1]; + olms.info_lms_item[0]=olms.info_lms_item[1]; } cont_f.attr("src",mysrc); - if(lms_lp_type==1 || lms_item_type=='asset'){ + if(olms.lms_lp_type==1 || olms.lms_item_type=='asset'){ xajax_start_timer(); } //(4) refresh the audio player if needed $.ajax({ - type: "GET", + type: "POST", url: "lp_nav.php", data: "", success: function(tmp_data) { $("#media").html(tmp_data); } }); -/* - if ( lms_lp_type==2 && (orig_lesson_status == 'not attempted' || orig_lesson_status == '') && orig_current_item != orig_next_item) { - params = 'lid='+lms_lp_id+'&uid='+lms_user_id+'&vid='+lms_view_id+'&iid='+orig_current_item; - $.ajax({ - type:"GET", - data: params, - url: "lp_ajax_last_update_status.php", - dataType: "script" - }); - } -*/ return true; } /** * Save a specific item (with its interactions, if any) into the LMS through - * an AJAX call. Originally, we used the xajax library. Now we use jQuery. + * an AJAX call to lp_ajax_save_item.php. * Because of the need to pass an array, we have to build the parameters - * manually into GET[] + * manually into GET[]. + * This function has a twin sister for SCO elements (xajax_save_item_scorm) + * which takes into account the interactions. + * @param int ID of the learning path (for the LMS) + * @param int ID of the user + * @param int ID of the view of this learning path + * @param int ID of the item currently looked at + * @param float Score + * @param float Max score + * @param float Min score + * @param string Lesson status + * @param string Current session time (in 'xxxx:xx:xx.xx' format) + * @param string Suspend data (maximum 255 chars) + * @param string Lesson location (which page we've reached in the SCO) + * @param array Interactions + * @param string Core exit value (up to 4096 chars) + * @return void + * @uses lp_ajax_save_item.php through an AJAX call */ function xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score, max, min, lesson_status, session_time, suspend_data, lesson_location, interactions, lms_item_core_exit) { params=''; @@ -1384,35 +1471,7 @@ function xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score params += '&status='+lesson_status+'&t='+session_time; params += '&suspend='+suspend_data+'&loc='+lesson_location; params += '&core_exit='+lms_item_core_exit; - interact_string = ''; - for (i in interactions){ - interact_string += '&interact['+i+']='; - interact_temp = '['; - for (j in interactions[i]) { - interact_temp += interactions[i][j]+','; - } - interact_temp = interact_temp.substr(0,(interact_temp.length-2)) + ']'; - interact_string += encodeURIComponent(interact_temp); - } - //interact_string = encodeURIComponent(interact_string.substr(0,(interact_string.length-1))); - params += interact_string; - /*params = { - 'lid': lms_lp_id, - 'uid': lms_user_id, - 'vid': lms_view_id, - 'iid': lms_item_id, - 's': score, - 'max': max, - 'min': min, - 'status': lesson_status, - 't': session_time, - 'suspend': suspend_data, - 'loc': lesson_location, - 'interact': interac_string, - 'core_exit': lms_item_core_exit - } - */ - if ( lms_lp_type==1) { + if ( olms.lms_lp_type==1) { $.ajax({ type:"GET", data: params, @@ -1423,43 +1482,52 @@ function xajax_save_item(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, score ); } } - -function xajax_save_item_scorm(lms_lp_id, lms_user_id, lms_view_id, lms_item_id,info_get_lms) { - -// var variables_scorm = new Array('cmi.core.score.raw','cmi.core.score.max','cmi.core.score.min','cmi.core.lesson_location', -//'cmi.core.lesson_status','cmi.completion_status','cmi.core.session_time','cmi.score.scaled','cmi.success_status', -//'cmi.suspend_data','cmi.core.exit','interactions'); +/** + * Save a SCORM item's variables, getting its SCORM values from + * updatable_vars_list. Takes interactions into account and considers whether + * variables have been modified or not. + * @param int ID of the learning path + * @param int ID of the user + * @param int ID of the view + * @param int ID of the item + * @return void + * @uses olms.updatable_vars_list + * @uses lp_ajax_save_item.php through an AJAX call + */ +function xajax_save_item_scorm(lms_lp_id, lms_user_id, lms_view_id, lms_item_id) { var is_interactions='false'; var params=''; params += 'lid='+lms_lp_id+'&uid='+lms_user_id+'&vid='+lms_view_id+'&iid='+lms_item_id; - - for (k=0;k= 0){ @@ -1484,48 +1551,31 @@ function xajax_save_item_scorm(lms_lp_id, lms_user_id, lms_view_id, lms_item_id, interact_temp +=temp+','; } interact_temp = interact_temp.substr(0,(interact_temp.length-2)) + ']'; - // interact_string += encodeURIComponent(interact_temp); + // interact_string += encodeURIComponent(interact_temp); - interact_string += interact_temp; + interact_string += interact_temp; } //interact_string = encodeURIComponent(interact_string.substr(0,(interact_string.length-1))); params += interact_string; is_interactions='false'; - } - - //alert("parameters : "+params); - /*params = { - 'lid': lms_lp_id, - 'uid': lms_user_id, - 'vid': lms_view_id, - 'iid': lms_item_id, - 's': score, - 'max': max, - 'min': min, - 'status': lesson_status, - 't': session_time, - 'suspend': suspend_data, - 'loc': lesson_location, - 'interact': interac_string, - 'core_exit': lms_item_core_exit - }*/ - $.ajax({ - type:"GET", - data: params, - url: "lp_ajax_save_item.php", - dataType: "script", - async: false - } - ); - - params=''; - + } + $.ajax({ + type:"GET", + data: params, + url: "lp_ajax_save_item.php", + dataType: "script", + async: false + }); + params=''; + my_scorm_values = null; } /** * Starts the timer with the server clock time. - * Originally, we used the xajax library. Now we use jQuery + * @return void + * @todo check the timer stuff really works + * @uses lp_ajax_start_timer.php */ function xajax_start_timer() { $.ajax({ @@ -1536,35 +1586,45 @@ function xajax_start_timer() { }); } /** - * Save a specific item's objectives into the LMS through - * an AJAX call. Originally, we used the xajax library. Now we use jQuery + * Save a specific item's objectives into the LMS through an Synch JAX call + * @param int ID of the learning path + * @param int ID of the user + * @param int ID of the view + * @param int ID of the item + * @param array SCO's recorded objectives + * @uses lp_ajax_save_objectives.php */ function xajax_save_objectives(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,item_objectives) { - params=''; - params += 'lid='+lms_lp_id+'&uid='+lms_user_id+'&vid='+lms_view_id; - params += '&iid='+lms_item_id; - obj_string = ''; - for (i in item_objectives){ - obj_string += '&objectives['+i+']='; - obj_temp = '['; - for (j in item_objectives[i]) { - obj_temp += item_objectives[i][j]+','; - } - obj_temp = obj_temp.substr(0,(obj_temp.length-2)) + ']'; - obj_string += encodeURIComponent(obj_temp); + params=''; + params += 'lid='+lms_lp_id+'&uid='+lms_user_id+'&vid='+lms_view_id; + params += '&iid='+lms_item_id; + obj_string = ''; + for (i in item_objectives){ + obj_string += '&objectives['+i+']='; + obj_temp = '['; + for (j in item_objectives[i]) { + obj_temp += item_objectives[i][j]+','; } - params += obj_string; - $.ajax({ - type: "GET", - data: params, - url: "lp_ajax_save_objectives.php", - dataType: "script", - async: false - }); + obj_temp = obj_temp.substr(0,(obj_temp.length-2)) + ']'; + obj_string += encodeURIComponent(obj_temp); + } + params += obj_string; + $.ajax({ + type: "GET", + data: params, + url: "lp_ajax_save_objectives.php", + dataType: "script", + async: false + }); } /** - * Switch between two items through - * an AJAX call. Originally, we used the xajax library. Now we use jQuery + * Switch between two items through an AJAX call. + * @param int ID of the learning path + * @param int ID of the user + * @param int ID of the view + * @param int ID of the item + * @param int ID of the next item + * @uses lp_ajax_switch_item.php */ function xajax_switch_item_details(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,next_item) { params = { @@ -1573,42 +1633,70 @@ function xajax_switch_item_details(lms_lp_id,lms_user_id,lms_view_id,lms_item_id 'vid': lms_view_id, 'iid': lms_item_id, 'next': next_item - } + }; $.ajax({ - type: "GET", + type: "POST", data: params, url: "lp_ajax_switch_item.php", dataType: "script", async: false }); } - - +/** + * Switch between two items through an AJAX call, but only update the TOC and + * progress bar. + * @param int ID of the learning path + * @param int ID of the user + * @param int ID of the view + * @param int ID of the item + * @param int ID of the next item + * @uses lp_ajax_switch_toc.php + */ +function xajax_switch_item_toc(lms_lp_id,lms_user_id,lms_view_id,lms_item_id,next_item) { + params = { + 'lid': lms_lp_id, + 'uid': lms_user_id, + 'vid': lms_view_id, + 'iid': lms_item_id, + 'next': next_item + }; + $.ajax({ + type: "POST", + data: params, + url: "lp_ajax_switch_item_toc.php", + dataType: "script", + async: true + }); +} +/** + * Add the "addListeners" function to the "onload" event of the window and + * start the timer if necessary (asset) + */ addEvent(window,'load',addListeners,false); -if(lms_lp_type==1 || lms_item_type=='asset'){ +if(olms.lms_lp_type==1 || olms.lms_item_type=='asset'){ xajax_start_timer(); } - /** -*Allow attach the glossary terms into html document of scorm -*Added by Isaac flores -*/ + * Allow attach the glossary terms into html document of scorm. This has + * nothing to do with SCORM itself, and should not interfere w/ SCORM either. + * Added by Isaac flores + */ function attach_glossary_into_scorm() { - var f = $('#content_id')[0]; + var f = $('#content_id')[0]; - var doc = f.contentWindow ? f.contentWindow.document : - f.contentDocument ? f.contentDocument : f.document; + var doc = f.contentWindow ? f.contentWindow.document : + f.contentDocument ? f.contentDocument : f.document; - var $frame_content = $('body',doc); - var my_text=$frame_content.html(); + var $frame_content = $('body',doc); + var my_text=$frame_content.html(); - my_protocol = location.protocol; - my_pathname=location.pathname; - work_path = my_pathname.substr(0,my_pathname.indexOf('/courses/')); + my_protocol = location.protocol; + my_pathname=location.pathname; + work_path = my_pathname.substr(0,my_pathname.indexOf('/courses/')); - $.ajax({ + $.ajax({ contentType: "application/x-www-form-urlencoded", - beforeSend: function(objeto) { + beforeSend: function(object) { }, type: "POST", url: my_protocol+"//"+location.host+work_path+"/main/glossary/glossary_ajax_request.php", @@ -1617,55 +1705,53 @@ function attach_glossary_into_scorm() { if (datos.length==0) { return false; } - data_terms=datos.split("[|.|_|.|-|.|]"); - for(i=0;i
 
"); - $("iframe").contents().find('body').find("div#"+div_show_id).attr("style","display:inline;float:left;position:absolute;background-color:#F5F6CE;border-bottom: 1px dashed #dddddd;border-right: 1px dashed #dddddd;border-left: 1px dashed #dddddd;border-top: 1px dashed #dddddd;color:#305582;margin-left:5px;margin-right:5px;"); - $("iframe").contents().find('body').find("div#"+div_content_id).attr("style","background-color:#F5F6CE;color:#305582;margin-left:8px;margin-right:8px;margin-top:5px;margin-bottom:5px;"); - notebook_id=$(this).attr("name"); - data_notebook=notebook_id.split("link"); - my_glossary_id=data_notebook[1]; - $.ajax({ - contentType: "application/x-www-form-urlencoded", - beforeSend: function(objeto) { - $("iframe").contents().find('body').find("div#"+div_content_id).html(""); }, - type: "POST", - url: my_protocol+"//"+location.host+work_path+"/main/glossary/glossary_ajax_request.php", - data: "glossary_id="+my_glossary_id, - success: function(datos) { - $("iframe").contents().find('body').find("div#"+div_content_id).html(datos); - } - }); + $("iframe").contents().find('body').find('.glossary-ajax').mouseover(function() { + random_id=Math.round(Math.random()*100); + div_show_id="div_show_id"+random_id; + div_content_id="div_content_id"+random_id; + $(this).append("
 
"); + $("iframe").contents().find('body').find("div#"+div_show_id).attr("style","display:inline;float:left;position:absolute;background-color:#F5F6CE;border-bottom: 1px dashed #dddddd;border-right: 1px dashed #dddddd;border-left: 1px dashed #dddddd;border-top: 1px dashed #dddddd;color:#305582;margin-left:5px;margin-right:5px;"); + $("iframe").contents().find('body').find("div#"+div_content_id).attr("style","background-color:#F5F6CE;color:#305582;margin-left:8px;margin-right:8px;margin-top:5px;margin-bottom:5px;"); + notebook_id=$(this).attr("name"); + data_notebook=notebook_id.split("link"); + my_glossary_id=data_notebook[1]; + $.ajax({ + contentType: "application/x-www-form-urlencoded", + beforeSend: function(object) { + $("iframe").contents().find('body').find("div#"+div_content_id).html(""); + }, + type: "POST", + url: my_protocol+"//"+location.host+work_path+"/main/glossary/glossary_ajax_request.php", + data: "glossary_id="+my_glossary_id, + success: function(datos) { + $("iframe").contents().find('body').find("div#"+div_content_id).html(datos); + } + }); }); // mouse out event $("iframe").contents().find('body').find('.glossary-ajax').mouseout(function(){ var current_element, current_element=$(this); div_show_id=current_element.find("div").attr("id"); - $("iframe").contents().find('body').find("div#"+div_show_id).remove(); + $("iframe").contents().find('body').find("div#"+div_show_id).remove(); }); //Callback Helper function replace_complete_char(m) { - var complete_term_pattern = new RegExp(real_term,"i"); - var tag = m.replace(complete_term_pattern," $&"); - return tag; + var complete_term_pattern = new RegExp(real_term,"i"); + var tag = m.replace(complete_term_pattern," $&"); + return tag; } - } - - }); - + }); } \ No newline at end of file