You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
<?
|
|
include_once("../php/include.php");
|
|
$status = getOptionalRequestValue("status", "?");
|
|
|
|
header("Content-type: image/svg+xml");
|
|
?>
|
|
<svg xmlns="http://www.w3.org/2000/svg" height="32" width="32">
|
|
<? if($status == 200) { ?>
|
|
<circle cx="16" cy="16" r="14" stroke="green" stroke-width="3" fill="none" />
|
|
<text x="5" y="22" fill="green" font-family="Arial" font-weight="bold" font-size="18">ok</text>
|
|
<? } else if($status == 403) { ?>
|
|
<circle cx="16" cy="16" r="14" stroke="orange" stroke-width="3" fill="none" />
|
|
|
|
<circle cx="16" cy="14" r="6" stroke="orange" stroke-width="2" fill="none" />
|
|
<rect x="8" y="14" width="16" height="10" rx="2" ry="2" style="fill:orange;" />
|
|
<? } else if($status == 500) { ?>
|
|
<circle cx="16" cy="16" r="14" stroke="red" stroke-width="3" fill="none" />
|
|
<text x="13" y="23" fill="red" font-family="Arial" font-weight="bold" font-size="20">!</text>
|
|
<? } else { ?>
|
|
<circle cx="16" cy="16" r="14" stroke="gray" stroke-width="3" fill="none" />
|
|
<text x="6" y="21" fill="gray" font-family="Arial" font-weight="bold" font-size="13"><?=$status?></text>
|
|
<? } ?>
|
|
SVG not supported!
|
|
</svg>
|