mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 09:22:22 +00:00
-added scheduler for generating and saving ESI -first version of generateESI job
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
class Kennzeichen_model extends DB_Model
|
||||
{
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->dbTable = 'public.tbl_kennzeichen';
|
||||
$this->pk = 'kennzeichen_id';
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param
|
||||
* @return object success or error
|
||||
*/
|
||||
public function _()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Get Zustelladress of given person.
|
||||
* @param string $person_id
|
||||
* @param string $select
|
||||
* @return array
|
||||
*/
|
||||
//~ public function getZustellAdresse($person_id, $select = '*')
|
||||
//~ {
|
||||
//~ $this->addSelect($select);
|
||||
//~ return $this->loadWhere(array('person_id' => $person_id, 'zustelladresse'=> true));
|
||||
//~ }
|
||||
}
|
||||
Reference in New Issue
Block a user