GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Gradebook/ |
Upload File : |
<? // Gradebook/ClassGradebookHeader.phpinc if (da()) debugTrackBegin(); /** /d_Var("\$f['PostGrades']",$f['PostGrades'],'d'); /**/ //if ( $f['PostGrades'] ) { $hide = ' hidden'; $containerStyle = ' style="padding-left:125px; text-align:right;"'; } else { $hide = ''; $containerStyle = ''; } if ( $f['PostGrades'] ) { $hide = ' hidden'; $containerStyle = ' style="text-align:right;"'; } else { $hide = ''; $containerStyle = ''; } ?> <div class="divScroll" id="scrollDiv<?=$classIndex?>" data-width="xxx" ><!-- style="width: 1190px;" --> <table class="tblScroll bdr" id="gradeBook<?=$classIndex?>"> <? // Evaluation name header. ?> <tr> <th class="fixedColumn"> <div class="studentIdColumn right">Student Id</div> <div class="divHeader studentNameColumn left">Student Name</div> </th> <? if ( $variableCredits === true ) { ?> <th class="right" title="Student credits">cr</th> <? } $colCount = 0; foreach ( $eInfo as $eId => $evaluationInfo ) { if ( $eId >= 0 || $eInfo[$eId]['points'] > 0 ) { $CSSclass = ''; $dueTextOnly = ''; $evalClass = ''; if ( $eInfo[$eId]['extra'] ) $evalClass = ' evalEC'; if ( $eInfo[$eId]['critical'] ) $evalClass = ' evalCr'; $collapsedTitle = str_replace(" ","",$eInfo[$eId]['title']); if ( $evalClass == '' ) { $evaluationInfo['evaluationTitle'] = $evaluationInfo['title']; $evaluationInfo['evaluationDescription'] = $evaluationInfo['description']; $evaluationInfo['evaluationDueDate'] = $evaluationInfo['due']; require('Gradebook/EvaluationDueDate.phpinc'); //$CSSclass .= " "; //$dueTextOnly = '. '.$dueTextOnly; } $dueTextOnly = strip_tags($dueTextOnly); $dueTextOnly = str_replace(' (','.<br>(',$dueTextOnly); $colCount++; if ( $colCount === 1 ) { $CSSclass .= " secondCol "; } ?> <th class="<?=$CSSclass?> evalTitle dataColumn<?=$evalClass?><?=$hide?>" id="title_<?=$collapsedTitle?>_<?=$eId?>" onMouseOver="ttShow('<?=$eInfo[$eId]['description']?>.<br><?=$dueTextOnly?>');" onMouseOut="ttHide();"><?=$collapsedTitle?></th> <? /** / ?> <th class="<?=$CSSclass?> evalTitle dataColumn<?=$evalClass?><?=$hide?>" id="title_<?=$collapsedTitle?>_<?=$eId?>" aria-label="<?=$eInfo[$eId]['description']?><?=$dueTextOnly?>"><?=$collapsedTitle?></th> <? /**/ } } ?> <th class="dataColumn" title="Total points / +Extra credit points"<?=$containerStyle?>>Total</th> <th class="dataColumn" title="Final class grade. The grade you will recieve for the class with the current points.">Final</th> <th class="dataColumn<?=$hide?>" title="In progress grade. The class grade so far based on the graded evaluations.">IP</th> <th></th> </tr> <? // Evaluation points header. ?> <tr> <th class="fixedColumn"> <div class="studentIdColumn"> </div> <div class="divHeader studentNameColumn normal right">Points:</div> </th> <? if ( $variableCredits === true ) { ?> <th></th> <? } $colCount = 0; foreach ( $eInfo as $eId => $evaluationInfo ) { if ( $eId >= 0 || $eInfo[$eId]['points'] > 0 ) { $evalClass = ''; if ( $eInfo[$eId]['extra'] ) $evalClass = ' evalEC'; if ( $eInfo[$eId]['critical'] ) $evalClass = ' evalCr'; $collapsedTitle = str_replace(" ","",$eInfo[$eId]['title']); $colCount++; $CSSclass = ''; if ( $colCount === 1 ) { $CSSclass = " secondCol "; } ?> <td class="<?=$CSSclass?>dataColumn<?=$evalClass?><?=$hide?>" id="points_<?=$collapsedTitle?>_<?=$eId?>" title="<?=$eInfo[$eId]['description']?>"><?=$eInfo[$eId]['points']?></td> <? } } ?> <td class="dataColumn" title="Total points / +Extra credit points"<?=$containerStyle?>><?=$evaluationTotalGradedPoints?><? if ( $evaluationTotalGradedPoints != $evaluationTotalPoints ) { ?><span class="evalEC">/<?=$evaluationTotalPoints?></span><? } ?></td> <th class="dataColumn" title="Final class grade. The grade you will recieve for the class with the current points.">Grade</th> <th class="dataColumn<?=$hide?>" title="In progress grade. The class grade so far based on the graded evaluations.">Grade</th> <th class="dataColumn" title="Last date of attendance.">LDA</th> </tr> <? $rowClass = ' row_odd'; if (da()) debugTrackEnd(); ?>