mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-24 16:49:34 -05:00
9 lines
541 B
PHTML
9 lines
541 B
PHTML
<?php if ($this->bp->isEditMode()): ?>
|
|
<?php if ($this->bp->hasBeenChanged()): ?>
|
|
<a href="<?= $this->url()->without('edit') ?>" title="<?= $this->escape('Store modifications') ?>"><?= $this->icon('ok') ?></a>
|
|
<?php endif ?>
|
|
<a href="<?= $this->url()->without('edit') ?>" title="<?= $this->escape('Dismiss modifications') ?>"><?= $this->icon('cancel') ?></a>
|
|
<?php else: ?>
|
|
<a href="<?= $this->url()->with('edit', true) ?>" title="<?= $this->escape('Modify this process') ?>"><?= $this->icon('wrench') ?></a>
|
|
<?php endif ?>
|
|
|