".$p->titel.""; if($p->omschrijving_tonen == 1) $page .="

".unformatMCE($p->omschrijving)."

"; if($p->weblink != "") { if(strpos($p->weblink,"]") > 0) { $page .= "

"; $links = explode("]",$p->weblink); foreach($links as $link) { if($link != "") { $link = explode(";",str_replace("[","",$link)); $page .= " ".$link[0]."
"; } } $page .= "

"; } else { $page .= "

weblink)."\"> Meer informatie

"; } } $page .= "

"; $l = getProjectLeider($p->id); if(isset($l)) { $page .= "Projectleider: ".unformat($l->naam); if($l->weblink != "") $page .= " weblink)."\" title=\"Webpagina van ".unformat($l->naam)."\">"; } $m = getProjectMedewerkers($p->id); if(isset($m)) { if(count($m) > 1) $page .= "
Medewerkers: "; else if(count($m) > 0) $page .= "
Medewerker: "; $cnt = 0; foreach($m as $l) { if($cnt != 0) $page .= ", "; if($l->weblink != "") $page .= " weblink."\" title=\"Webpagina van ".unformat($l->naam)."\">".unformat($l->naam).""; else $page .= $l->naam; $cnt++; } } $o = getProjectOpdrachtgevers($p->id); if(isset($o)) { if(count($o) > 1) $page .= "
Opdrachtgevers: "; else if(count($o) > 0) $page .= "
Opdrachtgevers: "; $cnt = 0; foreach($o as $l) { if($cnt != 0) $page .= ", "; if($l->weblink != "") { $page .= " weblink."\" title=\"Webpagina van ".unformat($l->naam)."\">".unformat($l->naam).""; } else $page .= $l->naam; $cnt++; } } $page .= "
"; if($p->organisatie !="") $page .= "
Organisatie: ".unformat($p->organisatie); if($p->datum_start !="") $page .= "
Begindatum: ".$p->datum_start; if($p->datum_eind !="") $page .= "
Einddatum: ".$p->datum_eind; if($p->afgerond == "1") $page .= "
Status: Afgerond"; if($p->afgerond == "2") $page .= "
Status: Lopend"; if($p->afgerond == "3") $page .= "
Status: Toekomstig"; $page .= "
"; $t = getProjectThemas($p->id); if(isset($t)) { if(count($t) > 1) $page .= "
Thema's: "; else $page .= "
Thema: "; $cnt = 0; foreach($t as $l) { if($cnt != 0) $page .= ", "; $page .= "id)."\" title=\"Zoeken naar project binnen het thema '".unformat($l->thema)."'.\">".unformat($l->thema).""; $cnt++; } } if($p->tags != "") { $page .= "
Trefwoorden: "; $tags = explode(" ",$p->tags); foreach($tags as $tag) $page .= "".$tag." "; } } else { $page = "

Project

".getPage(7,false); } ?>