]> git.mjollnir.org Git - moodle.git/commitdiff
New style Tabs in Management page.
authorrkingdon <rkingdon>
Thu, 13 Nov 2003 11:39:09 +0000 (11:39 +0000)
committerrkingdon <rkingdon>
Thu, 13 Nov 2003 11:39:09 +0000 (11:39 +0000)
mod/exercise/lib.php

index 7d3e3731937d00874116c0aa7abe47b864538aa8..1e516d824b9954cf1f794ff458f8900e2241533c 100644 (file)
@@ -831,7 +831,7 @@ function exercise_count_unassessed_student_submissions($exercise) {
 ///////////////////////////////////////////////////////////////////////////////////////////////
 function exercise_count_ungraded_assessments_student($exercise) {
        // function returns the number of ungraded assessments by students of STUDENT submissions
-       $n = 0;
+    $n = 0;
        if ($submissions = exercise_get_student_submissions($exercise)) {
                foreach ($submissions as $submission) {
                        if ($assessments = exercise_get_assessments($submission)) {
@@ -1857,7 +1857,7 @@ function exercise_list_unassessed_student_submissions($exercise, $user) {
                if (isset($table->data)) {
                        print_table($table);
                }
-       }
+    }
 }
 
 
@@ -3679,16 +3679,16 @@ function exercise_print_submission_title($exercise, $submission) {
 }
 
 
-///////////////////////////////////////////////////////////////////////////////////////////////
+//////////////////////////////////////////////////////////////////////////////////////
 function exercise_print_tabbed_heading($tabs) {
 // Prints a tabbed heading where one of the tabs highlighted.
 // $tabs is an object with several properties.
-//             $tabs->names     is an array of tab names
-//             $tabs->urls      is an array of links
+//             $tabs->names      is an array of tab names
+//             $tabs->urls       is an array of links
 //             $tabs->align     is an array of column alignments (defaults to "center")
 //             $tabs->size      is an array of column sizes
 //             $tabs->wrap      is an array of "nowrap"s or nothing
-//             $tabs->highlight is an index (zero based) of "active" heading .
+//             $tabs->highlight    is an index (zero based) of "active" heading .
 //             $tabs->width     is an percentage of the page (defualts to 80%)
 //             $tabs->cellpadding    padding on each cell (defaults to 5)
 
@@ -3742,9 +3742,9 @@ function exercise_print_tabbed_heading($tabs) {
                 $wrapping = "";
             }
                        if ($key == $tabs->highlight) {
-                               echo "<td valign=top $alignment $width $wrapping bgcolor=\"$THEME->cellheading2\">$tab</td>\n";
+                               echo "<td valign=top class=\"generaltabselected\" $alignment $width $wrapping bgcolor=\"$THEME->cellheading2\">$tab</td>\n";
                        } else {
-                               echo "<td valign=top $alignment $width $wrapping bgcolor=\"$THEME->body\">$tab</td>\n";
+                               echo "<td valign=top class=\"generaltab\" $alignment $width $wrapping bgcolor=\"$THEME->cellheading\">$tab</td>\n";
                        }
                echo "<td  class=\"generaltablecell\">".
                        "<img width=\"10\" src=\"$CFG->wwwroot/pix/spacer.gif\" alt=\"\"></td>\n";