Added Anrechnungsdata (student, lv and lectors of lv)

Signed-off-by: cris-technikum <[email protected]>
This commit is contained in:
Cris
2021-01-05 12:19:27 +01:00
committed by cris-technikum
parent fb29dc1e0e
commit 04174d35f5
4 changed files with 115 additions and 21 deletions
@@ -20,6 +20,7 @@ class requestAnrechnung extends Auth_Controller
// Load libraries
$this->load->library('WidgetLib');
$this->load->library('PermissionLib');
$this->load->library('AnrechnungLib');
// Load helpers
$this->load->helper('form');
@@ -31,7 +32,9 @@ class requestAnrechnung extends Auth_Controller
array(
'global',
'ui',
'anrechnung'
'anrechnung',
'person',
'lehre'
)
);
@@ -42,8 +45,14 @@ class requestAnrechnung extends Auth_Controller
public function index()
{
$this->load->view('lehre/anrechnung/requestAnrechnung.php');
$studiensemester_kurzbz = $this->input->get('studiensemester');
$lv_id = $this->input->get('lv_id');
$viewData = array(
'anrechnungData' => $this->anrechnunglib->getAnrechnungData($this->_uid, $studiensemester_kurzbz, $lv_id)
);
$this->load->view('lehre/anrechnung/requestAnrechnung.php', $viewData);
}
public function uploadFile($filename = null)