mirror of
https://github.com/unraid/webgui.git
synced 2026-01-03 16:14:54 -06:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
Menu="WebGui"
|
|
Title="Vars"
|
|
Icon="icon-vars"
|
|
Tag="code"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?if (_var($display,'resize')):?>
|
|
<script>
|
|
function resize() {
|
|
$('pre.up').height(Math.max(window.innerHeight-320,330));
|
|
}
|
|
$(function() {
|
|
resize();
|
|
$(window).bind('resize',function(){resize();});
|
|
});
|
|
</script>
|
|
<?endif;?>
|
|
<?
|
|
$globals = [];
|
|
$names = ['_SERVER','devs','disks','sec','sec_nfs','shares','users','var'];
|
|
foreach ($names as $name) $globals[$name] = $$name;
|
|
// show outgoing proxy information, is in the environment but not a superglobal
|
|
$globals['environment'] = ['http_proxy' => getenv('http_proxy'), 'no_proxy' => getenv('no_proxy')];
|
|
echo "<pre class='up'>",htmlspecialchars(print_r($globals,true)),"</pre>";
|
|
?>
|
|
<input type="button" value="_(Done)_" onclick="done()">
|