require_once '../include/functions.inc.php';
require_once '../include/benutzerberechtigung.class.php';
require_once '../include/projekt.class.php';
require_once '../include/projektphase.class.php';
require_once '../include/rdf.class.php';
require_once '../include/datum.class.php';
$oRdf = new rdf('PROJEKTPHASE', 'http://www.technikum-wien.at/projektphase');
$oRdf->sendHeader();
$datum_obj = new datum();
$projektphase_id = isset($_GET['projektphase_id']) ? $_GET['projektphase_id'] : '';
$projekt_kurzbz = isset($_GET['projekt_kurzbz']) ? $_GET['projekt_kurzbz'] : '';
if ($projektphase_id != '') {
    $phase = new projektphase();
    $timestamp = time();
    $timestamp = date('Y-m-d');
    if (!$phase->load($projektphase_id)) {
        die('Fehler beim Laden der Phase');
    }
    $ergebnis = $phase->getFortschritt($projektphase_id);
    $i = $oRdf->newObjekt($phase->projektphase_id);
    // hat phase schon begonnen
    if ($timestamp <= $phase->start || $phase->start == '') {
        $ergebnis = "-";
    }
    $oRdf->obj[$i]->setAttribut('projektphase_id', $phase->projektphase_id);
    $oRdf->obj[$i]->setAttribut('projekt_kurzbz', $phase->projekt_kurzbz);
    $oRdf->obj[$i]->setAttribut('projektphase_fk', $phase->projektphase_fk);
    $oRdf->obj[$i]->setAttribut('bezeichnung', $phase->bezeichnung);
    $oRdf->obj[$i]->setAttribut('beschreibung', $phase->beschreibung);
    $oRdf->obj[$i]->setAttribut('start_iso', $phase->start);
    $oRdf->obj[$i]->setAttribut('ende_iso', $phase->ende);
示例#2
0
 * 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 <*****@*****.**>
 */
//echo 'start';
require_once '../../config/vilesci.config.inc.php';
require_once '../../include/Parser/Parsedown.php';
require_once '../../include/projekttask.class.php';
require_once '../../include/projektphase.class.php';
$Parsedown = new Parsedown();
$task = new projekttask();
$phase = new projektphase();
if (isset($_GET['projekttask_id'])) {
    $task->load($_GET['projekttask_id']);
    echo $Parsedown->text($task->beschreibung);
} elseif (isset($_GET['projektphase_id'])) {
    $phase->load($_GET['projektphase_id']);
    echo $Parsedown->text($phase->beschreibung);
} else {
    die('"projekttask_id nor projektphase_id" is set!');
}