mirror of
https://github.com/unraid/webgui.git
synced 2026-01-06 09:39:58 -06:00
- Replaced existing resize functions with fillAvailableHeight calls in multiple pages for consistent dynamic height adjustments. - Updated PageMap.page, Processes.page, Syslog.page, Vars.page, DockerContainers.page, VMMachines.page to utilize fillAvailableHeight with appropriate parameters. - Wrapped relevant elements in 'js-fill-available-height' and 'js-actions' divs for improved structure and layout clarity.
43 lines
1.2 KiB
Plaintext
43 lines
1.2 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.
|
|
*/
|
|
?>
|
|
<?
|
|
$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')];
|
|
?>
|
|
<?if (_var($display,'resize')):?>
|
|
<script>
|
|
$(function() {
|
|
fillAvailableHeight({
|
|
targetElementSelector: '.js-fill-available-height',
|
|
elementSelectorsForHeight: [
|
|
'.js-actions',
|
|
],
|
|
});
|
|
});
|
|
</script>
|
|
<?endif;?>
|
|
|
|
<pre class='js-fill-available-height up'><?= htmlspecialchars(print_r($globals,true));?></pre>
|
|
|
|
<div class="js-actions">
|
|
<input type="button" value="_(Done)_" onclick="done()">
|
|
</div>
|