Ejemplo n.º 1
0
 protected function writeOutputWeb(CheckResult $res, $severity)
 {
     $str = "<div>{$res->check->name}: ";
     if ($res->success()) {
         $str .= "<span style=\"color: #00FF00\">PASSED</span>";
     } else {
         if ($severity === self::RES_FAILED) {
             $str .= "<span style=\"color: #FF0000\">FAILURE: </span>{$res->message}";
         } else {
             $str .= "<span style=\"color: #FFFF00\">WARNING: </span>{$res->message}";
         }
     }
     echo "{$str}</div>";
 }