mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-04 13:49:29 +00:00
89849d30fb
- added getByDate, generateMatrikelnummer methods
23 lines
389 B
PHP
23 lines
389 B
PHP
<?php
|
|
class Benutzer_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_benutzer';
|
|
$this->pk = array('uid');
|
|
$this->hasSequence = false;
|
|
}
|
|
|
|
public function getFromPersonId($person_id)
|
|
{
|
|
/*$this->addSelect('uid, aktiv, alias');*/
|
|
$this->loadWhere(array('person_id' => $person_id));
|
|
}
|
|
|
|
}
|