mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-07 23:29:28 +00:00
68dd0f3cb8
- added methods direktUserAdd, direktuserDelete (for direkt User Zuordnung to le) to education/Lehreinheitgruppe_model - added method getLvsByStudent to education/Lehrveranstaltung_model - Added hasSequence = false to Benutzergruppe_model - fixed typo in lehrveranstaltungDBML
16 lines
266 B
PHP
16 lines
266 B
PHP
<?php
|
|
class Benutzergruppe_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_benutzergruppe';
|
|
$this->pk = array('gruppe_kurzbz', 'uid');
|
|
$this->hasSequence = false;
|
|
}
|
|
}
|