Tabs are out.

(all the module was using them, please change your editor settings to 4 spaces)
This commit is contained in:
stronk7 2005-05-16 22:41:19 +00:00
parent 894ff63f8f
commit 271fea974f
15 changed files with 1808 additions and 1810 deletions

View file

@ -1027,12 +1027,11 @@ function lesson_calculate_ongoing_score($lesson, $userid, $retries, $return=fals
}
}
$nviewed = count($temp); // this counts number of Questions the user viewed
if ($nviewed != 0) {
$thegrade = intval(100 * $ncorrect / $nviewed);
} else {
$thegrade = 0;
}
if ($nviewed != 0) {
$thegrade = intval(100 * $ncorrect / $nviewed);
} else {
$thegrade = 0;
}
if ($return) {
return $thegrade;
@ -1113,15 +1112,15 @@ function lesson_calculate_ongoing_score($lesson, $userid, $retries, $return=fals
/*******************************************************************/
function lesson_qtype_menu($qtypes, $selected="", $link="", $onclick="") {
// prints the question types for when editing and adding a page
$tabs = array();
$tabrows = array();
$tabs = array();
$tabrows = array();
foreach ($qtypes as $qtype => $qtypename) {
$tabrows[] = new tabobject($qtype, "$link&qtype=$qtype\" onClick=\"$onclick\"", $qtypename);
$tabrows[] = new tabobject($qtype, "$link&qtype=$qtype\" onClick=\"$onclick\"", $qtypename);
}
$tabs[] = $tabrows;
print_tabs($tabs, $selected);
echo "<input type=\"hidden\" name=\"qtype\" value=\"$selected\" /> \n";
$tabs[] = $tabrows;
print_tabs($tabs, $selected);
echo "<input type=\"hidden\" name=\"qtype\" value=\"$selected\" /> \n";
}