summaryrefslogtreecommitdiff
path: root/delstip.php
blob: fd644a80185738a3479ca43613c0d8944e86ece6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?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";

$stipID = $_GET['id'];
$prohibit = false;

(function () use ($mysqli, $_title, $stipID) {
    $sql = "SELECT Personen.*, Stipendien.Jahr FROM Stipendien LEFT JOIN Personen ON Stipendien.Person = Personen.ID WHERE Stipendien.ID=?;";
    $stmt = $mysqli->prepare($sql);
    $stmt->bind_param('i', $stipID);
    $stmt->execute();
    $r = $stmt->get_result();
    $l = $r->fetch_object();

    $_title = '<span class="pii">' . $l->Nachname . ', ' . $l->Vorname . ' (' . $l->Jahr . ')</span> (ID ' . $stipID . ')';
    include_once __DIR__ . "/header.php";
?>
    <h1 style="display: inline-block;"><span style="color: red; font-weight: bold;">Stipendiendatensatz 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, '_=2Vorname', '_=2Nachname', '_Jahr'],
    ];
    include __DIR__ . '/autoform.php';
    $stmt->reset();
})();

(function () use ($stipID) {
    $globstring = "{" . $stipID . "stip}_";
    require_once __DIR__ . "/doc.php";
})();

(function () use ($stipID) {
    $globstring = $stipID . "_";
    require_once __DIR__ . "/doc.php";
})();

(function () use ($mysqli, $stipID, &$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 stipid=?
";
    $stmt = $mysqli->prepare($sql);
    $stmt->bind_param("i", $stipID);
    $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?> Notizendatensätze, die mit diesem Personendatensatz verknüpft sind. Löschen daher nicht möglich.</p>
<?
}
?>

<hr>
<?
if (!$prohibit) {
?>
    <button class="medium" onclick="return delStip();" style="background: red;"><i class="far fa-trash-alt"></i> Stipendiendatensatz 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/delstipdo.php', {
        'id': <?=$stipID?>,
        'what': what
    });
    window.location.reload();
}

function delStip() {
    doSth('stip');
}
<? minEnd(); ?>
</script>

<?
if (!$prohibit && isset($_GET['autodel']) && $_GET['autodel'] == 1) {
?>
<script>
    delStip();
</script>
<?
}

require_once __DIR__ . "/jumper.php";
exit(0);