diff options
| author | Niklas Olmes <niklas@olmes.de> | 2026-04-24 19:30:00 +0200 |
|---|---|---|
| committer | Niklas Olmes <niklas@olmes.de> | 2026-04-24 19:30:00 +0200 |
| commit | cdea8caa5617f0cb77bcbc9803759abd2df50644 (patch) | |
| tree | 2f7f1bd3af3b2396baf5403ad1a7ad00bcb7fae9 /delpatron.php | |
Diffstat (limited to 'delpatron.php')
| -rw-r--r-- | delpatron.php | 179 |
1 files changed, 179 insertions, 0 deletions
diff --git a/delpatron.php b/delpatron.php new file mode 100644 index 0000000..b89949b --- /dev/null +++ b/delpatron.php @@ -0,0 +1,179 @@ +<?php +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ +?> +<? +/* vim: set ts=4 sw=4 et : */ + +require_once __DIR__ . "/check_auth.php"; +require_once __DIR__ . "/../includes/common.php"; + +$foerdID = $_GET['id']; +$prohibit = false; + +(function () use ($mysqli, $_title, $foerdID) { + $sql = "SELECT *, Organisationen.Name, Organisationen.PLZ, Organisationen.Ort FROM Förderer LEFT JOIN Organisationen ON Förderer.Organisation = Organisationen.ID WHERE Förderer.ID=?;"; + $stmt = $mysqli->prepare($sql); + $stmt->bind_param('i', $foerdID); + $stmt->execute(); + $r = $stmt->get_result(); + $l = $r->fetch_object(); + + $_title = '<span class="pii">' . $l->Name . '</span> (ID ' . $foerdID . ')'; + include_once __DIR__ . "/header.php"; +?> + <h1 style="display: inline-block;"><span style="color: red; font-weight: bold;">Fördererdatensatz löschen:</span> <?=$_title?></h1> +<? + if ($l->ID < 1) { +?> + <p><b>Kein Datensatz mit dieser ID gefunden!</b></p> + <p>Wenn Sie gerade gelöscht haben, war das Löschen erfolgreich.</p> + +<? if (isset($_GET['autodel']) && $_GET['autodel'] == 1) { ?> + <script> + window.close(); + </script> +<? } + exit(0); + } + + $def = [ + "Auszug", + [6, '_=3Name', '_PLZ', '_=2Ort'] + ]; + include __DIR__ . '/autoform.php'; + $stmt->reset(); +})(); + +(function () use ($foerdID) { + $globstring = "{" . $foerdID . "patron}_"; + require_once __DIR__ . "/doc.php"; +})(); + +(function () use ($mysqli, $foerdID, &$num_rows) { + $title = "Stipendien"; + $nochosen = $nofilter = true; + $sql = " +SELECT + Stipendien.ID AS StipID, + Stipendien.Jahr AS Jahr, + Förderarten.Name AS Förderart +FROM Stipendien + LEFT JOIN Förderarten ON Stipendien.Förderart = Förderarten.ID +WHERE Stipendien.Förderer = ? +"; + $stmt = $mysqli->prepare($sql); + $stmt->bind_param("i", $foerdID); + $stmt->execute(); + $r = $stmt->get_result(); + include __DIR__ . '/autotable.php'; + $stmt->reset(); +})(); +if ($num_rows) { + $prohibit = true; +?> + <p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> vernknüpfte Stipendiendatensätze. Löschen daher nicht möglich.</p> +<? +} + +(function () use ($mysqli, $foerdID, &$num_rows) { + $title = "Notizen"; + $nochosen = $nofilter = true; + $sql = " +SELECT + id AS NotizID, + title AS Titel, + solved AS erledigt, + changets AS `Letzte Änderung` +FROM notes +WHERE foerdid=? +"; + $stmt = $mysqli->prepare($sql); + $stmt->bind_param("i", $foerdID); + $stmt->execute(); + $r = $stmt->get_result(); + include __DIR__ . '/autotable.php'; + $stmt->reset(); +})(); +if ($num_rows) { + $prohibit = true; +?> + <p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren <?=$num_rows?> vernknüpfte Notizendatensätze. Löschen daher nicht möglich.</p> +<? +} + +(function () use ($mysqli, $foerdID, &$num_rows) { + $title = "Verträge"; + $nochosen = $nofilter = true; + $sql = " +SELECT + contracts.id AS VertrID, + contracts.`call` +FROM contracts +WHERE contracts.patron = ? +"; + $stmt = $mysqli->prepare($sql); + $stmt->bind_param("i", $foerdID); + $stmt->execute(); + $r = $stmt->get_result(); + include __DIR__ . '/autotable.php'; + $stmt->reset(); +})(); +if ($num_rows) { + $prohibit = true; +?> + <p class="warning"><i class="fas fa-exclamation-triangle"></i> Es existieren Verknüpfungen in <?=$num_rows?> Vertragsdatensätzen. Löschen daher nicht möglich.</p> +<? +} +?> + +<hr> +<? +if (!$prohibit) { +?> + <button class="medium" onclick="return delPatron();" style="background: red;"><i class="far fa-trash-alt"></i> Fördererdatensatz unwiderruflich löschen</button> +<? +} else { +?> +<p>Löschen derzeit nicht möglich. Zunächst Datensätze umwidmen bzw. Verknüpfungen entfernen.<p> +<? +} +?> + +<script> +<? minStart(); ?> +function doSth(what) { + $.ajaxSetup({async:false}); + $.post('/db/main/delpatrondo.php', { + 'id': <?=$foerdID?>, + 'what': what + }); + window.location.reload(); +} + +function delPatron() { + doSth('patron'); +} +<? minEnd(); ?> +</script> + +<? +if (!$prohibit && isset($_GET['autodel']) && $_GET['autodel'] == 1) { +?> +<script> + delPatron(); +</script> +<? +} + +require_once __DIR__ . "/jumper.php"; +exit(0); |
