Infocenter: Anzeige inaktive ZGVs als disabled im Dropdown ZGV

This commit is contained in:
ma0068
2022-08-29 15:12:06 +02:00
parent 8292e00aaf
commit 54a1c486c5
4 changed files with 51 additions and 7 deletions
+12
View File
@@ -11,4 +11,16 @@ class Zgv_model extends DB_Model
$this->dbTable = 'bis.tbl_zgv';
$this->pk = 'zgv_code';
}
/**
* getAllForStyled Dropdown
*/
public function getAllZgv()
{
$allZgv = 'SELECT * FROM bis.tbl_zgv;';
return $this->execQuery($allZgv);
}
}