diff options
| author | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2026-02-01 22:25:58 +0100 |
|---|---|---|
| committer | Friedrich Beckmann <friedrich.beckmann@gmx.de> | 2026-02-01 22:25:58 +0100 |
| commit | 51cfa87ea5f1ac6f830c456b04809f9d2bf5b4ab (patch) | |
| tree | 2796203ee3aba44b11ef14b7951fb370b2ae9d29 /setup.php | |
| parent | 046f73a745b56d9feebd487823e3867c156fce58 (diff) | |
add Prüfungsamt as teilprüfung and delete option
I added Prüfungsamt as checkbox item to indicate if the
result is reported to Prüfungsamt. The delete option
allows to remove an entry from the database.
Diffstat (limited to 'setup.php')
| -rw-r--r-- | setup.php | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -35,11 +35,18 @@ $pfp = array ( "name" => "Digitaltechnik", "pnr" => ["3976090"], "studiengang" => ["TI"] + ), + "amt" => array ( + "name" => "Prüfungsamt", + "pnr" => [], + "studiengang" => [] ) ); $notenlabor = ["BE", "NB", "AB", "NM", "NA"]; $notenklausur = ["100","130","170","200","230","270","300","330","370","400","500"]; +$notenamt = ["1"]; //amt is either 1 or not set, i.e "" +$notendelete = ["00", "000"]; //Unset value in database "00" for labor, "000" for klausur $students = array ( "12345" => array ( |
