mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-28 08:14:03 +02:00
parent
b468be2813
commit
fdb3988efd
@ -73,7 +73,7 @@ if ($notifications->hasMessages()) {
|
|||||||
<?php
|
<?php
|
||||||
$firstPage = current($configPagesLeft);
|
$firstPage = current($configPagesLeft);
|
||||||
$lastPage = end($configPagesLeft);
|
$lastPage = end($configPagesLeft);
|
||||||
$lineWidth = round(100 / count($configPagesLeft), 2, PHP_ROUND_HALF_DOWN);
|
$lineWidth = sprintf('%.2F', round(100 / count($configPagesLeft), 2, PHP_ROUND_HALF_DOWN));
|
||||||
?>
|
?>
|
||||||
<?php foreach ($configPagesLeft as $pos => $page): ?>
|
<?php foreach ($configPagesLeft as $pos => $page): ?>
|
||||||
<?php $stateClass = $finished || $pos < $currentPos ? ' complete' : (
|
<?php $stateClass = $finished || $pos < $currentPos ? ' complete' : (
|
||||||
@ -100,7 +100,7 @@ if ($notifications->hasMessages()) {
|
|||||||
<?php
|
<?php
|
||||||
$firstPage = current($configPagesRight);
|
$firstPage = current($configPagesRight);
|
||||||
$lastPage = end($configPagesRight);
|
$lastPage = end($configPagesRight);
|
||||||
$lineWidth = round(100 / count($configPagesRight), 2, PHP_ROUND_HALF_DOWN);
|
$lineWidth = sprintf('%.2F', round(100 / count($configPagesRight), 2, PHP_ROUND_HALF_DOWN));
|
||||||
?>
|
?>
|
||||||
<?php foreach ($configPagesRight as $pos => $page): ?>
|
<?php foreach ($configPagesRight as $pos => $page): ?>
|
||||||
<?php $stateClass = $finished || $pos < $currentPos ? ' complete' : (
|
<?php $stateClass = $finished || $pos < $currentPos ? ' complete' : (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user