Files
FHC-Core/application/models/education/Note_model.php
T
2025-05-12 12:50:56 +02:00

23 lines
315 B
PHP

<?php
class Note_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_note';
$this->pk = 'note';
}
public function getAll() {
$qry ="SELECT *
FROM lehre.tbl_note";
return $this->execReadOnlyQuery($qry);
}
}