Example #1
0
      window.opener.location.reload(true);
      window.close();
    });
  </script>
</head>
<body>
  <form>
    <br />&nbsp;<div align="center"><input type="button" name="home" value="<?php 
    echo $string['ok'];
    ?>
" class="ok" onclick="closeWindow();" /></div>
  </form>
  <?php 
} else {
    $current_address = NetworkUtils::get_client_address();
    $note_details = PaperNotes::get_note($paperID, $current_address, $mysqli);
    ?>
<!DOCTYPE html>
<html>
<head>
	<meta http-equiv="X-UA-Compatible" content="IE=edge" />
	<meta http-equiv="content-type" content="text/html;charset=<?php 
    echo $configObject->get('cfg_page_charset');
    ?>
" />

	<title><?php 
    echo $string['note'];
    ?>
</title>
Example #2
0
</div>  
  </div>
      
  <div class="popup_row" onclick="reassignLogLate();" id="item7">
    <div class="popup_icon"><img id="log_late_icon" style="display:none" src="../artwork/log_late_16.gif" width="16" height="16" alt="" /></div>
    <div class="popup_title"><?php 
echo $string['latesubmissions'];
?>
</div>
  </div>
</div>
<?php 
for ($i = -100; $i <= 100; $i++) {
    $distribution[$i] = 0;
}
$notes = PaperNotes::get_all_notes_by_paper($paperID, $mysqli);
$toilet_breaks = ToiletBreaks::get_all_breaks_by_paper($paperID, $mysqli);
if ($marking == '0') {
    $marking_label = $string['%'];
    $marking_key = 'percent';
} else {
    $marking_label = $string['adjusted%'];
    $marking_key = 'adj_percent';
}
// Output table heading
$table_order = array('', 'Title', $string['surname'], $string['firstnames'], $string['studentid'], $string['course'], $string['mark'], $marking_label, $string['classification'], $string['rank'], $string['decile'], $string['starttime'], $string['duration']);
if ($configObject->get('cfg_client_lookup') == 'name') {
    $table_order[] = $string['hostnames'];
} else {
    $table_order[] = $string['ipaddress'];
}