mirror of
https://github.com/unraid/webgui.git
synced 2026-02-09 18:49:29 -06:00
11 lines
402 B
PHP
11 lines
402 B
PHP
<?php
|
|
$docroot ??= ($_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp');
|
|
$var = (array)parse_ini_file('state/var.ini'); // required for state.php - don't remove unless you've refactored the code to work without it
|
|
require_once "$docroot/plugins/dynamix.my.servers/include/state.php";
|
|
|
|
$serverState = new ServerState();
|
|
|
|
header('Content-type: application/json');
|
|
|
|
echo $serverState->getServerStateJson();
|