Move Semester Filter to top component

This commit is contained in:
cgfhtw
2024-11-25 11:20:44 +01:00
parent 334fc870d0
commit 28e4454409
6 changed files with 86 additions and 57 deletions
@@ -113,11 +113,11 @@ class Grades extends FHCAPI_Controller
$this->terminateWithSuccess($grades);
}
public function getRepeaterGrades($prestudent_id)
public function getRepeaterGrades($prestudent_id, $all = null)
{
$this->load->library('AntragLib');
$studiensemester_kurzbz = $this->variablelib->getVar('semester_aktuell');
$studiensemester_kurzbz = ($all === null) ? $this->variablelib->getVar('semester_aktuell') : false;
$result = $this->antraglib->getLvsForPrestudent($prestudent_id, $studiensemester_kurzbz);