*/ require_once('../config/vilesci.config.inc.php'); require_once('../include/rdf.class.php'); require_once('../include/basis_db.class.php'); require_once('../include/statusgrund.class.php'); require_once('../include/functions.inc.php'); $uid = get_uid(); $oRdf = new rdf('AUFWANDSTYP','http://www.technikum-wien.at/statusgrund'); $oRdf->sendHeader(); if(isset($_GET['status_kurzbz'])) $status_kurzbz = $_GET['status_kurzbz']; else die('Status_kurzbz muss uebergeben werden'); $statusgrund = new statusgrund(); $statusgrund->getFromStatus($status_kurzbz,true); $i=$oRdf->newObjekt(''); $oRdf->obj[$i]->setAttribut('statusgrund_id','',true); $oRdf->obj[$i]->setAttribut('status_kurzbz','',true); $oRdf->obj[$i]->setAttribut('beschreibung','-- keine Auswahl --',true); $oRdf->obj[$i]->setAttribut('bezeichnung_mehrsprachig','-- keine Auswahl --',true); $oRdf->addSequence(''); $include_id_found=false; $include_id = ''; if(isset($_GET['include_id'])) { $include_id = $_GET['include_id']; } foreach($statusgrund->result as $row) { if($include_id==$row->statusgrund_id) $include_id_found=true; $i=$oRdf->newObjekt($row->statusgrund_id); $oRdf->obj[$i]->setAttribut('statusgrund_id',$row->statusgrund_id,true); $oRdf->obj[$i]->setAttribut('status_kurzbz',$row->status_kurzbz,true); $oRdf->obj[$i]->setAttribut('beschreibung',$row->beschreibung[DEFAULT_LANGUAGE],true); $oRdf->obj[$i]->setAttribut('bezeichnung_mehrsprachig',$row->bezeichnung_mehrsprachig[DEFAULT_LANGUAGE],true); $oRdf->addSequence($row->statusgrund_id); } if(!$include_id_found && $include_id!='') { $statusgrund->load($include_id); $i=$oRdf->newObjekt($statusgrund->statusgrund_id); $oRdf->obj[$i]->setAttribut('statusgrund_id',$statusgrund->statusgrund_id,true); $oRdf->obj[$i]->setAttribut('status_kurzbz',$statusgrund->status_kurzbz,true); $oRdf->obj[$i]->setAttribut('beschreibung',$statusgrund->beschreibung[DEFAULT_LANGUAGE],true); $oRdf->obj[$i]->setAttribut('bezeichnung_mehrsprachig',$statusgrund->bezeichnung_mehrsprachig[DEFAULT_LANGUAGE],true); $oRdf->addSequence($statusgrund->statusgrund_id); } $oRdf->sendRdfText(); ?>