mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 08:39:34 -05:00
6 lines
369 B
PHTML
6 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 ?>
|
|
|