mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
17f11fa871
# Conflicts: # application/controllers/api/frontend/v1/Lehre.php # application/models/education/Lehrveranstaltung_model.php # application/models/education/Note_model.php # application/views/CisRouterView/CisRouterView.php # public/js/api/factory/studiensemester.js # public/js/components/Bootstrap/Offcanvas.js # public/js/components/Overlay/FhcOverlay.js
22 lines
339 B
PHP
22 lines
339 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 getAllActive() {
|
|
$qry ="SELECT *
|
|
FROM lehre.tbl_note
|
|
WHERE aktiv = true";
|
|
|
|
return $this->execReadOnlyQuery($qry);
|
|
}
|
|
} |