mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
parent
d06ce98d2f
commit
81a3be74f3
@ -147,15 +147,17 @@ class Dashboard extends AbstractWidget
|
||||
if ($dashboardPane !== null) {
|
||||
$key = $dashboardPane->getLabel();
|
||||
}
|
||||
$pane = null;
|
||||
if ($this->hasPane($key)) {
|
||||
$panes[$key] = $this->getPane($key);
|
||||
$pane = $this->getPane($key);
|
||||
} else {
|
||||
$panes[$key] = new Pane($key);
|
||||
$pane = new Pane($key);
|
||||
$panes[$key] = $pane;
|
||||
$panes[$key]->setTitle($part->title);
|
||||
}
|
||||
$panes[$key]->setUserWidget();
|
||||
$pane->setUserWidget();
|
||||
if ((bool) $part->get('disabled', false) === true) {
|
||||
$panes[$key]->setDisabled();
|
||||
$pane->setDisabled();
|
||||
}
|
||||
} else {
|
||||
list($paneName, $dashletName) = explode('.', $key, 2);
|
||||
|
Loading…
x
Reference in New Issue
Block a user