refactoring of table database, added script for upgrading to versions >= 2.0, added multi-user support

Signed-off-by: giandonato.inverso@edempg.it <giandonato.inverso@studenti.unimi.it>
This commit is contained in:
Giandonato Inverso
2023-10-16 13:10:57 +02:00
committed by giandonato.inverso@edempg.it
parent cdab7df35d
commit 575a6b3caa
27 changed files with 363 additions and 158 deletions
+26
View File
@@ -7,6 +7,32 @@
<input type="text" name="filename" value="<?php echo htmlspecialchars($edit ? $static_qrcode['filename'] : '', ENT_QUOTES, 'UTF-8'); ?>" placeholder="Filename" class="form-control" required="required" id = "filename">
</div>
</div>
<?php if($_SESSION['type'] === 'super') { ?>
<div class="col-sm-4">
<div class="form-group">
<label for="id_owner">Owner *</label>
<select name="id_owner" class="form-control" required="required">
<?php
require_once BASE_PATH . '/lib/Users/Users.php';
$users_instance = new Users();
if(isset($static_qrcode['id_owner'])) {
$owner = $users_instance->getUser($static_qrcode['id_owner']);
echo "<option selected value=\"" . $owner["id"] . "\">" . $owner["username"] . "</option>";
echo "<option value=\"\">All</option>";
}
$users = $users_instance->getAllUsers();
foreach ($users as $user) {
?>
<option value="<?php echo $user["id"];?>"><?php echo $user["username"];?></option>
<?php } ?>
</select>
</div>
</div>
<?php } ?>
<input type="hidden" name="id" value="<?php echo $static_qrcode['id'];?>"/>
<input type="hidden" name="edit" value="true"/>
<input type="hidden" name="old_filename" value="<?php echo $static_qrcode['filename'];?>"/>