1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
<html>
<head>
<title>Userlist</title>
</head>
<body>
<?php
Ice_loadProfile();
try {
$base = $ICE->stringToProxy("Meta:tcp -h 127.0.0.1 -p 6502");
$meta = $base->ice_checkedCast("::Murmur::Meta");
$servers = $meta->getBootedServers();
$default = $meta->getDefaultConf();
foreach($servers as $s) {
$name = $s->getConf("registername");
if (! $name) {
$name = $default["registername"];
}
echo "<h1>SERVER #" . $s->id() . " " .$name ."</h1>\n";
echo "<table><tr><th>Name</th><th>Channel</th></tr>\n";
$channels = $s->getChannels();
$players = $s->getUsers();
foreach($players as $id => $state) {
$chan = $channels[$state->channel];
echo "<tr><td>".$state->name."</td><td>".$chan->name."</td></tr>\n";
}
echo "</table>\n";
}
} catch (Ice_LocalException $ex) {
print_r($ex);
}
?>
</body>
</html>
|