- use function getAktOrNextSemester

- restructure single libs to isolate typeId of data
- refactor Job: use params, details output
- use functions insert, update, delete
- use timeperiode for getAllTags and checkIfExistingTag
- controller: rebuild function: change to POST
- updated insertVon Batchuser
This commit is contained in:
ma0068
2026-05-05 15:20:02 +02:00
parent d1fa5f64c4
commit ef1347c7d5
14 changed files with 329 additions and 221 deletions
+4 -2
View File
@@ -339,10 +339,12 @@ class Tag_Controller extends FHCAPI_Controller
public function rebuildTagsForTypeId()
{
$id = $this->input->get('id');
$typeId = $this->input->get('typeId');
$id = $this->input->post('id');
$typeId = $this->input->post('typeId');
$result = $this->taglib->rebuildTagsForTypeId($typeId, $id);
//TODO (refactor; um semester, studiengang_kz)
//$result = $this->taglib->rebuildTagsForTypeId($params);
if (isError($result))
return error ('Error occurred during updateAutomatedTags');