icingaweb2-module-businessp.../application/views/scripts/simulationlink.phtml

7 lines
369 B
PHTML
Raw Normal View History

2014-11-30 06:11:46 -05:00
<?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 ?>