icingaweb2-module-businessp.../application/views/scripts/simulationlink.phtml
2014-11-30 12:11:46 +01:00

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 ?>