mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
27 lines
369 B
PHP
27 lines
369 B
PHP
<?php
|
|
class Zgv_model extends DB_Model
|
|
{
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->dbTable = 'bis.tbl_zgv';
|
|
$this->pk = 'zgv_code';
|
|
}
|
|
|
|
/**
|
|
* getAllForStyled Dropdown
|
|
*/
|
|
public function getAllZgv()
|
|
{
|
|
$allZgv = 'SELECT * FROM bis.tbl_zgv ORDER BY zgv_bez ASC;';
|
|
|
|
return $this->execQuery($allZgv);
|
|
}
|
|
|
|
|
|
}
|