mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-16 11:39:31 +00:00
a50a666d11
. Added new config file . Added check, if LV was already graded and if grades are defined in configs 'blocking grades array'. If so, Anrechnung is not allowed. . Adapted GUI to process data via JS only Signed-off-by: cris-technikum <hainberg@technikum-wien.at>
18 lines
510 B
PHP
18 lines
510 B
PHP
<?php
|
|
|
|
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
|
|
// Deadline for Application given as Time-Interval after Semesterstart.
|
|
$config['interval_blocking_application'] = 'P1M';
|
|
|
|
// Lehrveranstaltungen with these grades will be blocked for application
|
|
$config['grades_blocking_application'] = array(
|
|
5, // nicht genügend
|
|
6, // angerechnet
|
|
9, // noch nicht eingetragen
|
|
13, // nicht erfolgreich absolviert
|
|
14, // nicht bestanden,
|
|
15, // nicht teilgenommen
|
|
18 // unentschuldigt
|
|
); |