mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-28 08:14:03 +02:00
parent
6e24cfd538
commit
9a141d5e3c
@ -19,6 +19,19 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract
|
|||||||
public function perfdata($perfdataStr, $compact = false, $limit = 0, $color = Perfdata::PERFDATA_OK)
|
public function perfdata($perfdataStr, $compact = false, $limit = 0, $color = Perfdata::PERFDATA_OK)
|
||||||
{
|
{
|
||||||
$pieChartData = PerfdataSet::fromString($perfdataStr)->asArray();
|
$pieChartData = PerfdataSet::fromString($perfdataStr)->asArray();
|
||||||
|
|
||||||
|
if (1 < ($i = count($pieChartData))) {
|
||||||
|
while (--$i) {
|
||||||
|
for ($j = 0, $k = 1; $j < $i; ++$j, ++$k) {
|
||||||
|
if ($pieChartData[$k]->worseThan($pieChartData[$j])) {
|
||||||
|
$perfdata = $pieChartData[$k];
|
||||||
|
$pieChartData[$k] = $pieChartData[$j];
|
||||||
|
$pieChartData[$j] = $perfdata;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$results = array();
|
$results = array();
|
||||||
$table = array(
|
$table = array(
|
||||||
'<td><b>' . implode(
|
'<td><b>' . implode(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user