getValue("IMAGEDIR");
$greengif = $imagedir . "/green-ball-m.gif";
$yellowgif = $imagedir . "/yellow-ball-m.gif";
$redgif = $imagedir . "/red-ball-m.gif";
//node/group is good
if (strstr($status, "good") == TRUE ){
$stat_content = " ";
}elseif (strstr($status, "bad") == TRUE){ //node is bad
$stat_content = " ";
}else{ //other status
$stat_content = " ";
}
return $stat_content;
}
}
?>