self::BERECHTIGUNG_KURZBZ.':r', 'getZgvStatusByPrestudent' => self::BERECHTIGUNG_KURZBZ.':r' ) ); $this->load->model('crm/ZGVPruefungStatus_model', 'ZGVPruefungStatusModel'); $this->load->model('crm/ZGVPruefung_model', 'ZGVPruefungModel'); $this->load->library('WidgetLib'); $this->load->library('PermissionLib'); $this->setControllerId(); $this->loadPhrases( array( 'infocenter' ) ); } public function index() { $oeKurzbz = $this->permissionlib->getOE_isEntitledFor(self::BERECHTIGUNG_KURZBZ); if (!$oeKurzbz) show_error('Keine Berechtigung.'); $data['oeKurz'] = $oeKurzbz; $this->load->view('system/infocenter/infocenterZgvUeberpruefung.php', $data); } public function getZgvStatusByPrestudent() { $prestudent_id = $this->input->get('prestudent_id'); $zgvExist = $this->ZGVPruefungModel->loadWhere(array('prestudent_id' => $prestudent_id)); if (!hasData($zgvExist)) $this->terminateWithJsonError('no ZGV exist'); $status = $this->ZGVPruefungStatusModel->getZgvStatus(getData($zgvExist)[0]->zgvpruefung_id); if (!hasData($status)) $this->terminateWithJsonError('No status'); $status = getData($status)[0]->status; $this->outputJsonSuccess($status); } }