-added scheduler for generating and saving ESI -first version of generateESI job

This commit is contained in:
KarpAlex
2023-03-22 17:41:15 +01:00
parent 230ebcaf9a
commit cd6443d9c0
4 changed files with 345 additions and 2 deletions
@@ -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));
//~ }
}