$startbold = '';
$endbold = '';
if ($sco->id == $currentSCO) {
- $startbold = '-> <b><u>';
- $endbold = '</u></b> <-';
+ $startbold = '-> <b>';
+ $endbold = '</b> <-';
+ }
+ if (($currentSCO == "") && ($mode != "normal")) {
+ $currentSCO = $sco->id;
+ $startbold = '-> <b>';
+ $endbold = '</b> <-';
}
if ($sco_user=get_record("scorm_sco_users","scoid",$sco->id,"userid",$USER->id)) {
if ( $sco_user->cmi_core_lesson_status == "")
if ($currentSCO == "") {
$incomplete = true;
$currentSCO = $sco->id;
- $startbold = '-> <b><u>';
- $endbold = '</u></b> <-';
+ $startbold = '-> <b>';
+ $endbold = '</b> <-';
}
}
} else {
echo " <img src=\"pix/notattempted.gif\" alt=\"".get_string("notattempted","scorm")."\" />";
$incomplete = true;
}
- echo " $startbold<a href=\"javascript:playSCO(".$sco->id.");\">$sco->title</a>$endbold\n </li>\n";
+ $score = "";
+ if (($sco_user->cmi_core_lesson_status == "passed") || ($sco_user->cmi_core_lesson_status == "failed"))
+ $score = "(".get_string("score","scorm").": ".$sco_user->cmi_core_score_raw.")";
+ echo " $startbold<a href=\"javascript:playSCO(".$sco->id.");\">$sco->title</a> $score$endbold\n </li>\n";
} else {
echo " $sco->title\n </li>\n";
}
if ($scorm->popup != "") {
?>
<script language="Javascript">
- top.main = window.open('','main','<?php echo $scorm->popup ?>');
SCOInitialize();
</script>
<?php
echo "<head><title>$course->shortname: $scorm->name</title></head>\n";
echo "<script id=\"scormAPI\" language=\"JavaScript\" type=\"text/javascript\" src=\"scormAPI.php?id=$cm->id&mode=".$mode.$scoid."\"></script>\n";
echo "<frameset rows=\"$CFG->scorm_framesize,*\" onLoad=\"SCOInitialize();\">\n";
- echo " <frame name=\"nav\" src=\"playscorm.php?id=$cm->id&mode=".$mode."&frameset=top\">\n";
- echo " <frame name=\"main\" src=\"\">\n";
+ echo "\t <frame name=\"nav\" src=\"playscorm.php?id=$cm->id&mode=".$mode."&frameset=top\">\n";
+ echo "\t <frame name=\"main\" src=\"\">\n";
echo "</frameset>\n";
echo "</html>\n";
}
print "\t".$navObj."document.navform.next.style.display = 'none';\n";
}
?>
- top.main.location="<?php echo $result; ?>";
-<?php if ($scorm->popup == "") { ?>
- hilightcurrent(<?php echo $navObj ?>document.navform.courseStructure);
-<?php } ?>
+<?php
+ if ($scorm->popup == "") {
+ echo "\t top.main.location=\"$result\";\n";
+ echo "\t hilightcurrent(".$navObj."document.navform.courseStructure);\n";
+ } else {
+ echo "\t top.main = window.open('$result','main','$scorm->popup');\n";
+ }
+?>
}
function changeSco(direction) {
echo " <img src=\"pix/notattempted.gif\" alt=\"".get_string("notattempted","scorm")."\" />";
$incomplete = true;
}
- echo " <a href=\"javascript:playSCO(".$sco->id.")\">$sco->title</a>\n </li>\n";
+ $score = "";
+ if (($sco_user->cmi_core_lesson_status == "passed") || ($sco_user->cmi_core_lesson_status == "failed"))
+ $score = "(".get_string("score","scorm").": ".$sco_user->cmi_core_score_raw.")";
+ echo " <a href=\"javascript:playSCO(".$sco->id.")\">$sco->title</a> $score\n </li>\n";
} else {
echo " $sco->title\n </li>\n";
}