Files
FHC-Core/rdf/projekttask.rdf.php
T
Andreas Österreicher 4bf498b2c9 - Planner Erledigt Icons angepasst
- Bufix beim Erledigen von Tasks
2011-10-04 07:37:29 +00:00

65 lines
2.5 KiB
PHP
Executable File

<?php
/* Copyright (C) 2009 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: Christian Paminger <christian.paminger@technikum-wien.at>
*/
require_once('../config/vilesci.config.inc.php');
require_once('../include/functions.inc.php');
require_once('../include/benutzerberechtigung.class.php');
require_once('../include/projekttask.class.php');
require_once('../include/rdf.class.php');
$projekttask_obj = new projekttask();
$projektphase_id=4; //zum Testen, ansonsten null
if (isset($_GET['projektphase_id']))
{
$projektphase_id=$_GET['projektphase_id'];
$projekttask_obj->getProjekttasks($projektphase_id);
}
if(isset($_GET['projekttask_id']))
{
$projekttask_obj->load($_GET['projekttask_id']);
$projekttask_obj->result[] = $projekttask_obj;
}
$oRdf = new rdf('PROJEKTTASK','http://www.technikum-wien.at/projekttask');
$oRdf->sendHeader();
$lastPT=null;
foreach($projekttask_obj->result as $projekttask)
{
$i=$oRdf->newObjekt($projekttask->projekttask_id);
$oRdf->obj[$i]->setAttribut('projekttask_id',$projekttask->projekttask_id);
$oRdf->obj[$i]->setAttribut('projektphase_id',$projekttask->projektphase_id);
$oRdf->obj[$i]->setAttribut('bezeichnung',$projekttask->bezeichnung);
$oRdf->obj[$i]->setAttribut('beschreibung',$projekttask->beschreibung);
$oRdf->obj[$i]->setAttribut('aufwand',$projekttask->aufwand);
$oRdf->obj[$i]->setAttribut('mantis_id',$projekttask->mantis_id);
$oRdf->obj[$i]->setAttribut('erledigt',($projekttask->erledigt?'true':'false'));
$oRdf->obj[$i]->setAttribut('projekttask_fk',$projekttask->projekttask_fk);
if($projekttask->projekttask_fk!='')
$oRdf->addSequence($projekttask->projekttask_id, $projekttask->projekttask_fk);
else
$oRdf->addSequence($projekttask->projekttask_id);
}
$oRdf->sendRdfText();
?>