mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-07 23:29:28 +00:00
cee15a68ba
. config['fbl'] enables Fachbereichsleitung instead of LektorInnen . config['send_mail'] enables sending Info Mails
27 lines
804 B
PHP
27 lines
804 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';
|
|
|
|
// Application submission period given by start- and enddate.
|
|
//$config['submit_application_start'] = '05.09.2022';
|
|
//$config['submit_application_end'] = '22.10.2022';
|
|
|
|
// 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
|
|
);
|
|
|
|
//Enables Fachbereichsleiter instead of LV Leiter
|
|
$config['fbl'] = FALSE;
|
|
//Enables Info Mails
|
|
$config['send_mail'] = TRUE; |