mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 00:29:47 -05:00
7 lines
369 B
PHTML
7 lines
369 B
PHTML
|
|
<?php if ($this->bp->isSimulationMode()): ?>
|
||
|
|
<a href="<?= $this->url()->without('simulation') ?>" title="<?= $this->escape('Switch to live mode') ?>"><?= $this->icon('globe') ?></a>
|
||
|
|
<?php else: ?>
|
||
|
|
<a href="<?= $this->url()->with('simulation', true) ?>" title="<?= $this->escape('Switch to simulation mode') ?>"><?= $this->icon('magic') ?></a>
|
||
|
|
<?php endif ?>
|
||
|
|
|