Gruppenadministration: first version of list with Gruppen of a manager.

This commit is contained in:
KarpAlex
2022-06-08 19:49:30 +02:00
parent 549396148d
commit 457ab9dc3e
6 changed files with 352 additions and 1 deletions
@@ -0,0 +1,14 @@
<?php
class Benutzergruppe_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'public.tbl_benutzergruppe';
$this->pk = array('uid', 'gruppe_kurzbz');
}
}