Add booleanvalues for operators support
This commit is contained in:
parent
77f9f4bffb
commit
77c391fcae
|
@ -10,6 +10,7 @@
|
||||||
global $storageareas;
|
global $storageareas;
|
||||||
global $monitors;
|
global $monitors;
|
||||||
global $zones;
|
global $zones;
|
||||||
|
global $booleanValues;
|
||||||
?>
|
?>
|
||||||
var filterQuery = '<?php echo isset($filterQuery) ? validJsStr(htmlspecialchars_decode($filterQuery)) : '' ?>';
|
var filterQuery = '<?php echo isset($filterQuery) ? validJsStr(htmlspecialchars_decode($filterQuery)) : '' ?>';
|
||||||
var sortQuery = '<?php echo isset($sortQuery) ? validJsStr(htmlspecialchars_decode($sortQuery)) : '' ?>';
|
var sortQuery = '<?php echo isset($sortQuery) ? validJsStr(htmlspecialchars_decode($sortQuery)) : '' ?>';
|
||||||
|
@ -24,6 +25,7 @@ var servers = <?php echo isset($servers) ? json_encode($servers) : '' ?>;
|
||||||
var storageareas = <?php echo isset($storageareas) ? json_encode($storageareas) : '' ?>;
|
var storageareas = <?php echo isset($storageareas) ? json_encode($storageareas) : '' ?>;
|
||||||
var monitors = <?php echo isset($monitors) ? json_encode($monitors) : '' ?>;
|
var monitors = <?php echo isset($monitors) ? json_encode($monitors) : '' ?>;
|
||||||
var zones = <?php echo isset($zones) ? json_encode($zones) : '' ?>;
|
var zones = <?php echo isset($zones) ? json_encode($zones) : '' ?>;
|
||||||
|
var booleanValues = <?php echo json_encode($booleanValues) ?>;
|
||||||
|
|
||||||
var errorBrackets = '<?php echo translate('ErrorBrackets') ?>';
|
var errorBrackets = '<?php echo translate('ErrorBrackets') ?>';
|
||||||
var errorValue = '<?php echo translate('ErrorValidValue') ?>';
|
var errorValue = '<?php echo translate('ErrorValidValue') ?>';
|
||||||
|
|
Loading…
Reference in New Issue