Changes remove icon in monitoring module to cancel icon

This commit is contained in:
Bernd Erk 2014-11-17 17:06:27 +01:00
parent f83bcbfd2b
commit 245c247ff3
5 changed files with 6 additions and 6 deletions

View File

@ -22,7 +22,7 @@
</td> </td>
<td style="text-align: center"> <td style="text-align: center">
<a href="<?= $this->href('config/removeresource', array('resource' => $name)); ?>"> <a href="<?= $this->href('config/removeresource', array('resource' => $name)); ?>">
<?= $this->icon('minus'); ?> <?= $this->icon('cancel'); ?>
</a> </a>
</td> </td>
</tr> </tr>

View File

@ -16,7 +16,7 @@
</td> </td>
<td> <td>
<a href="<?= $this->href('config/removeAuthenticationBackend', array('auth_backend' => $backendNames[$i])); ?>"> <a href="<?= $this->href('config/removeAuthenticationBackend', array('auth_backend' => $backendNames[$i])); ?>">
<?= $this->icon('minus', $this->translate('Remove')); ?> <?= $this->icon('cancel', $this->translate('Remove')); ?>
</a> </a>
</td> </td>
<td> <td>

View File

@ -28,7 +28,7 @@
</td> </td>
<td> <td>
<a href="<?= $this->href('/monitoring/config/removebackend', array('backend' => $backendName)); ?>"> <a href="<?= $this->href('/monitoring/config/removebackend', array('backend' => $backendName)); ?>">
<?= $this->icon('minus'); ?> <?= $this->icon('cancel'); ?>
</a> </a>
</td> </td>
</tr> </tr>
@ -60,7 +60,7 @@
</td> </td>
<td> <td>
<a href="<?= $this->href('/monitoring/config/removeinstance', array('instance' => $instanceName)); ?>"> <a href="<?= $this->href('/monitoring/config/removeinstance', array('instance' => $instanceName)); ?>">
<?= $this->icon('minus'); ?> <?= $this->icon('cancel'); ?>
</a> </a>
</td> </td>
</tr> </tr>

View File

@ -6,7 +6,7 @@ $objectName = $this->is_service ? 'Services' : 'Hosts';
<th><a href=<?= count($comments) ?> <?= $this->translate('Comments') ?></th> <th><a href=<?= count($comments) ?> <?= $this->translate('Comments') ?></th>
<td> <td>
<a href="<?= $this->href('monitoring/command/removecomment', $this->target) ?>"><?= <a href="<?= $this->href('monitoring/command/removecomment', $this->target) ?>"><?=
$this->icon('minus') $this->icon('cancel')
?> <?= $this->translate('Remove Comments') ?></a><br /> ?> <?= $this->translate('Remove Comments') ?></a><br />
<a href="<?= $this->href('monitoring/command/delaynotifications', $this->target); ?>"><?= <a href="<?= $this->href('monitoring/command/delaynotifications', $this->target); ?>"><?=
$this->icon('bell-off-empty') $this->icon('bell-off-empty')

View File

@ -7,7 +7,7 @@ $objectName = $this->is_service ? 'Services' : 'Hosts';
<th><?= count($downtimes) ?> Downtimes</th> <th><?= count($downtimes) ?> Downtimes</th>
<td> <td>
<a href="<?=$this->href('monitoring/command/removedowntime', $this->target); ?>"><?= <a href="<?=$this->href('monitoring/command/removedowntime', $this->target); ?>"><?=
$this->icon('minus') ?>Remove Downtimes</a><br /> $this->icon('cancel') ?>Remove Downtimes</a><br />
<a title="Schedule downtimes for all selected <?= $objectName ?>" href="<?= <a title="Schedule downtimes for all selected <?= $objectName ?>" href="<?=
$this->href('monitoring/command/scheduledowntime', $this->target) ?>"><?= $this->href('monitoring/command/scheduledowntime', $this->target) ?>"><?=
$this->icon('plug') $this->icon('plug')