mirror of
https://github.com/unraid/webgui.git
synced 2026-02-09 10:29:09 -06:00
10 lines
261 B
PHP
10 lines
261 B
PHP
<?php
|
|
$docroot ??= ($_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp');
|
|
require_once "$docroot/plugins/dynamix.my.servers/include/state.php";
|
|
|
|
$serverState = new ServerState();
|
|
|
|
header('Content-type: application/json');
|
|
|
|
echo $serverState->getServerStateJson();
|