edit/simulationlink: remove obsolete view scripts

This commit is contained in:
Thomas Gelf 2016-11-22 18:03:58 +01:00
parent 924a2fd321
commit 30cdc70783
2 changed files with 0 additions and 15 deletions

View file

@ -1,9 +0,0 @@
<?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 ?>

View file

@ -1,6 +0,0 @@
<?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 ?>