Example #1
0
 * phpMCWeb is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * phpMCWeb is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with phpMCWeb. If not, see <http://www.gnu.org/licenses/>.
 */
define("___ACCESS", TRUE);
require "../includes.php";
require "../inc/jsonapi.php";
$api = new JSONAPI($jsonapi_ip, $jsonapi_port, $jsonapi_username, $jsonapi_password, $jsonapi_salt);
$data = $api->callMultiple(array("getPlayerCount", "getPlayerLimit", "getPlayers"), array(array(), array(), array()));
$playercount = $data["success"][0]["success"];
$playerlimit = $data["success"][1]["success"];
$players = array($data["success"][2]["success"]);
if ($data["result"] !== "success") {
    $playercount = "?";
    $playerlimit = "?";
} else {
    foreach ($players[0] as $player => $value) {
        $name = $players[0][$player]["name"];
        if ($players[0][$player]["op"] === TRUE) {
            $playerlist = $playerlist . "<a id=\"op\" href=\"javascript:popup('functions/get_player.php?player=" . $name . "','playerinfo','700','500')\">" . $name . "</a>";
        } else {
            $playerlist = $playerlist . "<a href=\"javascript:popup('functions/get_player.php?player=" . $name . "','playerinfo','700','500')\">" . $name . "</a>";
        }
        if (!empty($players[0][$player + 1])) {
Example #2
0
 * phpMCWeb is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * phpMCWeb is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with phpMCWeb. If not, see <http://www.gnu.org/licenses/>.
 */
define("___ACCESS", TRUE);
require "../includes.php";
require "../inc/jsonapi.php";
$api = new JSONAPI($jsonapi_ip, $jsonapi_port, $jsonapi_username, $jsonapi_password, $jsonapi_salt);
$data = $api->callMultiple(array("system.getJavaMemoryTotal", "system.getJavaMemoryUsage"), array(array(), array()));
if ($data["result"] !== "success") {
    $status = "theme/" . $theme . "/offline.gif";
    $memtotal = "?";
    $memusage = "?";
    $memfree = "?";
} else {
    $status = "theme/" . $theme . "/online.gif";
    $memtotal = round($data["success"][0]["success"] / 1048576, 0);
    $memusage = round($data["success"][1]["success"] / 1048576, 0);
    $memfree = $memtotal - $memusage;
}
$memusage = sprintf($phpmc["MAIN"]["MEM_USED"], $memusage);
$memfree = sprintf($phpmc["MAIN"]["MEM_FREE"], $memfree);
$memtotal = sprintf($phpmc["MAIN"]["MEM_TOTAL"], $memtotal);
$memformat = nl2br($memusage . "\n" . $memfree . "\n" . $memtotal);
Example #3
0
<?php

require '../sdk/php/JSONAPI.php';
$api = new JSONAPI("localhost", 20059, "admin", "demo", "");
// host/ip, port, username, password, salt
var_dump($api->callMultiple(array("getPlayerLimit", "getPlayerCount"), array(array(), array())));