3
0
Fork 0
mirror of https://github.com/fsr/eseeva synced 2024-11-15 00:43:12 +01:00
eseeva/patronGenTut.php

56 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2014-07-08 20:14:37 +02:00
<?php
//============================================================================
// Name : patronGen.php
// Author : Patrick Reipschläger, Dirk Legler
// Version : 1.0
// Date : 10-2013
// Description : For generating the group name tickets.
//============================================================================
include_once 'libs/keyLib.php';
include_once 'libs/formLib.php';
// start a session prevent sending the same post twice
// if the user refreshes the page, it will default to the
// access code screen
//session_start();
// the key file which should be edited, either the default key file or the one that was specified
$keyFile = KEYFILE;
if (isset($_GET["keyFile"]))
$keyFile = $_GET["keyFile"];
// holds the key data, generated from the key file
$keyData = ReadKeyFile($keyFile);
// the group names and rooms for Monday and their start times for Tuesday
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Namenspatronzettel</title>
<link rel="stylesheet" type="text/css" href="css/print.css" />
</head>
<body>
<div class="container">
<?php
for ($i = 0; $i < count($keyData); $i++) {
if($keyData[$i][1] == KEYSTATE_UNISSUED) {
2015-09-25 16:14:17 +02:00
?>
<div class="ticket">
<div class="ticketimg"><img class="tutorticketimg" src="css/ese-logo.png"/></div>
<div class="tickettext">
<div class="patron">Tutor</div>
<!-- <div class="room">&nbsp;</div> -->
<!-- <div class="time">&nbsp;</div> -->
<br />
<code><?php echo substr($keyData[$i][0], 0, 10) . "<br />" . substr($keyData[$i][0], 10, 19); ?></code>
</div>
<div class="evalink">Tutoren-Eva unter https://ese.ifsr.de/2016/eva/tut</div>
2015-09-25 16:14:17 +02:00
</div>
<?php
2014-07-08 20:14:37 +02:00
}
}
?>
</div>
</body>
</html>