mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-19 07:52:16 +00:00
Verknüpfen von LVs mit einem Studienplan
This commit is contained in:
Executable
+74
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
|
||||
/* Copyright (C) 2006 Technikum-Wien
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as
|
||||
* published by the Free Software Foundation; either version 2 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*
|
||||
* Authors: Stefan Puraner <puraner@technikum-wien.at>
|
||||
*/
|
||||
|
||||
require_once(dirname(__FILE__) . '/basis_db.class.php');
|
||||
require_once(dirname(__FILE__) . '/functions.inc.php');
|
||||
|
||||
class lehrtyp extends basis_db {
|
||||
|
||||
public $result = array();
|
||||
public $lehrtyp_kurzbz;
|
||||
public $bezeichnung;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Holt alle Lehrtypen aus der table tbl_lehrtyp
|
||||
* @return true wenn ok, false im Fehlerfall
|
||||
*/
|
||||
public function getAll(){
|
||||
$qry = "SELECT * FROM lehre.tbl_lehrtyp;";
|
||||
if (!$this->db_query($qry)) {
|
||||
$this->errormsg = 'Datensatz konnte nicht geladen werden';
|
||||
return false;
|
||||
}
|
||||
|
||||
while ($row = $this->db_fetch_object()) {
|
||||
$lehrtyp = new lehrtyp();
|
||||
$lehrtyp->lehrtyp_kurzbz = $row->lehrtyp_kurzbz;
|
||||
$lehrtyp->bezeichnung = $row->bezeichnung;
|
||||
$this->result[] = $lehrtyp;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
public function cleanResult()
|
||||
{
|
||||
$data = array();
|
||||
if(count($this->result)>0)
|
||||
{
|
||||
foreach ($this->result as $lt)
|
||||
{
|
||||
$obj = new stdClass();
|
||||
$obj->lehrtyp_kurzbz = $lt->lehrtyp_kurzbz;
|
||||
$obj->bezeichnung = $lt->bezeichnung;
|
||||
$data[] = $obj;
|
||||
}
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user