mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 13:19:28 +00:00
22 lines
352 B
PHP
22 lines
352 B
PHP
<?php
|
|
class Benutzer_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'public.tbl_benutzer';
|
|
$this->pk = 'uid';
|
|
}
|
|
|
|
public function getFromPersonId($person_id)
|
|
{
|
|
/*$this->addSelect('uid, aktiv, alias');*/
|
|
$this->loadWhere(array('person_id' => $person_id));
|
|
}
|
|
|
|
}
|