first commit

This commit is contained in:
2026-02-07 09:46:32 +08:00
commit 5fcd5dc646
443 changed files with 89466 additions and 0 deletions

45
history.tpl.php Normal file
View File

@@ -0,0 +1,45 @@
<?php if (!empty($submits)): ?>
<table>
<tr>
<td>
<form action="history_diff.php" id="history-diff-form">
<input type="hidden" name="id" value="<?php echo $id; ?>" />
<div id="submitlist">
<?php echo get_string('submittime', 'programming'); ?>
<table>
<?php
$currentsubmit = NULL;
foreach($submits as $submit):
if (!$currentsubmit || $submit->id == $submitid)
$currentsubmit = $submit;
?>
<tr>
<th><input type="radio" name="s1" value="<?php echo $submit->id; ?>" class="diff1" /></th>
<th><input type="radio" name="s2" value="<?php echo $submit->id; ?>" class="diff2" /></th>
<td><a href="<?php echo $CFG->wwwroot; ?>/mod/programming/history.php?id=<?php echo $id; ?>&amp;submitid=<?php echo $submit->id; ?>" class="submit" submitid="<?php echo $submit->id; ?>">
<?php echo userdate($submit->timemodified, '%Y-%m-%d %H:%M:%S'); ?>
</a></td>
</tr>
<?php endforeach; ?>
</table>
<input type="submit" value="<?php echo get_string('compare', 'programming'); ?>" />
</div>
</form>
</td>
<td>
<div id="codeview">
<textarea rows="20" cols="60" name="code" class="c#" id="code"><?php echo htmlspecialchars($currentsubmit->code) ?></textarea>
</div>
</td>
</tr>
</table>
<!--
<table><tr>
<td><form action="print_preview.php" method="get"><input type="hidden" name="print_preview_submit_id" id="print_preview_submit_id" value="<?php echo $currentsubmit->id; ?>"/><input type="submit" value="<?php echo get_string('printpreview', 'programming'); ?>"/></form></td>
<td><form action="print.php" method="get"><input type="hidden" name="print_submit_id" id="print_submit_id" value="<?php echo $currentsubmit->id; ?>"/><input type="submit" value="<?php echo get_string('print', 'programming'); ?>"/></form></td>
</tr></table>-->
<?php else: ?>
<?php echo get_string('cannotfindyoursubmit', 'programming'); ?>
<?php endif; ?>