Add globals
This commit is contained in:
parent
dd627d9234
commit
1ab828c110
|
@ -28,6 +28,7 @@ var canStreamNative = <?php echo canStreamNative()?'true':'false' ?>;
|
|||
|
||||
var monitorData = new Array();
|
||||
<?php
|
||||
global $monitors;
|
||||
foreach ( $monitors as $monitor ) {
|
||||
?>
|
||||
monitorData[monitorData.length] = {
|
||||
|
@ -46,6 +47,7 @@ monitorData[monitorData.length] = {
|
|||
layouts = new Array();
|
||||
layouts[0] = {}; // reserved, should hold which fields to clear when transitioning
|
||||
<?php
|
||||
global $layouts;
|
||||
foreach ( $layouts as $layout ) {
|
||||
?>
|
||||
layouts[<?php echo $layout->Id() ?>] = {"Name":"<?php echo $layout->Name()?>","Positions":<?php echo $layout->Positions() ?>};
|
||||
|
|
|
@ -4,6 +4,18 @@ $TimeZone = new DateTimeZone( ini_get('date.timezone') );
|
|||
$now = new DateTime('now', $TimeZone);
|
||||
$offset = $TimeZone->getOffset($now);
|
||||
echo $offset.'; // '.floor($offset / 3600).' hours ';
|
||||
|
||||
global $defaultScale;
|
||||
global $liveMode;
|
||||
global $fitMode;
|
||||
global $speeds;
|
||||
global $speedIndex;
|
||||
global $initialDisplayInterval;
|
||||
global $minTimeSecs;
|
||||
global $maxTimeSecs;
|
||||
global $minTime;
|
||||
global $maxTime;
|
||||
global $monitors;
|
||||
?>
|
||||
|
||||
var currentScale=<?php echo $defaultScale?>;
|
||||
|
@ -146,7 +158,6 @@ foreach ( ZM\Server::find() as $Server ) {
|
|||
echo 'Servers[' . $Server->Id() . '] = new Server(' . $Server->to_json(). ");\n";
|
||||
}
|
||||
|
||||
|
||||
echo '
|
||||
var monitorName = [];
|
||||
var monitorLoading = [];
|
||||
|
@ -167,8 +178,8 @@ var monitorCanvasCtx = [];
|
|||
var monitorPtr = []; // monitorName[monitorPtr[0]] is first monitor
|
||||
';
|
||||
|
||||
$numMonitors=0; // this array is indexed by the monitor ID for faster access later, so it may be sparse
|
||||
$avgArea=floatval(0); // Calculations the normalizing scale
|
||||
$numMonitors = 0; // this array is indexed by the monitor ID for faster access later, so it may be sparse
|
||||
$avgArea = floatval(0); // Calculations the normalizing scale
|
||||
|
||||
foreach ( $monitors as $m ) {
|
||||
$avgArea = $avgArea + floatval($m->Width() * $m->Height());
|
||||
|
|
Loading…
Reference in New Issue