[svn r9901] Cleaned up dev settings

skala
Yannick Warnier 19 years ago
parent 31a53d6dfb
commit 854698e158
  1. 13
      main/newscorm/aicc_hacp.php

@ -86,7 +86,7 @@ $result = '';
//GET REQUEST //GET REQUEST
if(!empty($_REQUEST['command'])) if(!empty($_REQUEST['command']))
{ {
error_log('In '.__FILE__.', '.__LINE__.' - request is '.$_REQUEST['command'],0); //error_log('In '.__FILE__.', '.__LINE__.' - request is '.$_REQUEST['command'],0);
switch(strtolower($_REQUEST['command'])) switch(strtolower($_REQUEST['command']))
{ {
case 'getparam': case 'getparam':
@ -123,9 +123,9 @@ if(!empty($_REQUEST['command']))
//$result .= '[Student_Demographics]'.$crlf; //$result .= '[Student_Demographics]'.$crlf;
//$result .= '[Student_Preferences]'.$crlf; //$result .= '[Student_Preferences]'.$crlf;
error_log('Returning message: '.$result,0); //error_log('Returning message: '.$result,0);
$result = str_replace($convert_dec,$convert_enc,$result); $result = str_replace($convert_dec,$convert_enc,$result);
error_log('Returning message (encoded): '.$result,0); //error_log('Returning message (encoded): '.$result,0);
break; break;
case 'putparam': case 'putparam':
$hacp_version = ''; $hacp_version = '';
@ -152,7 +152,7 @@ if(!empty($_REQUEST['command']))
} }
//error_log('In '.__FILE__.', '.__LINE__.' - aicc data is '.$hacp_aicc_data,0); //error_log('In '.__FILE__.', '.__LINE__.' - aicc data is '.$hacp_aicc_data,0);
//treat the incoming request: //treat the incoming request:
$msg_array = aicc::parse_ini_string_quotes_safe($hacp_aicc_data); $msg_array = aicc::parse_ini_string_quotes_safe($hacp_aicc_data,array('core_lesson','core_vendor'));
//error_log('Message is now in this form: '.print_r($msg_array,true),0); //error_log('Message is now in this form: '.print_r($msg_array,true),0);
foreach($msg_array as $key=>$dummy){ foreach($msg_array as $key=>$dummy){
switch (strtolower($key)){ switch (strtolower($key)){
@ -160,21 +160,26 @@ if(!empty($_REQUEST['command']))
foreach($msg_array[$key] as $subkey => $value){ foreach($msg_array[$key] as $subkey => $value){
switch(strtolower($subkey)){ switch(strtolower($subkey)){
case 'lesson_location': case 'lesson_location':
//error_log('Setting lesson_location to '.$value,0);
$oItem->set_lesson_location($value); $oItem->set_lesson_location($value);
break; break;
case 'lesson_status': case 'lesson_status':
//error_log('Setting lesson_status to '.$value,0);
$oItem->set_status($value); $oItem->set_status($value);
break; break;
case 'score': case 'score':
//error_log('Setting lesson_score to '.$value,0);
$oItem->set_score($value); $oItem->set_score($value);
break; break;
case 'time': case 'time':
//error_log('Setting lesson_time to '.$value,0);
$oItem->set_time($value); $oItem->set_time($value);
break; break;
} }
} }
break; break;
case 'core_lesson': case 'core_lesson':
//error_log('Setting suspend_data to '.print_r($msg_array[$key],true),0);
$oItem->current_data = $msg_array[$key]; $oItem->current_data = $msg_array[$key];
break; break;
case 'comments': case 'comments':

Loading…
Cancel
Save