Open command forms in the same column where their link is located
refs #8279
This commit is contained in:
parent
6fde4eec30
commit
c19ff289bf
|
@ -35,7 +35,7 @@ if ($object->acknowledged): ?>
|
|||
);
|
||||
}
|
||||
?>
|
||||
<a href="<?= $ackLink ?>">
|
||||
<a href="<?= $ackLink ?>" data-base-target="_self">
|
||||
<?= $this->icon('ok') ?> <?= $this->translate('Acknowledge') ?>
|
||||
</a>
|
||||
<?php } else {
|
||||
|
|
|
@ -39,7 +39,7 @@ if ($object->getType() === $object::TYPE_HOST) {
|
|||
);
|
||||
}
|
||||
?>
|
||||
<a href="<?= $reschedule ?>">
|
||||
<a href="<?= $reschedule ?>" data-base-target="_self">
|
||||
<?= $this->icon('reschedule') ?>
|
||||
<?= $this->translate('Reschedule') ?>
|
||||
</a>
|
||||
|
|
|
@ -21,7 +21,7 @@ $command = array_shift($parts);
|
|||
array('host' => $object->getHost()->getName(), 'service' => $object->getName())
|
||||
);
|
||||
} ?>
|
||||
<a href="<?= $processCheckResult ?>">
|
||||
<a href="<?= $processCheckResult ?>" data-base-target="_self">
|
||||
<?= $this->icon('reply') ?>
|
||||
<?= $this->translate('Process check result') ?>
|
||||
</a>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
);
|
||||
}
|
||||
?>
|
||||
<a href="<?= $addCommentLink ?>">
|
||||
<a href="<?= $addCommentLink ?>" data-base-target="_self">
|
||||
<?= $this->icon('comment') ?>
|
||||
<?= $this->translate('Add comment') ?>
|
||||
</a>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
);
|
||||
}
|
||||
?>
|
||||
<a href="<?= $scheduleDowntimeLink ?>">
|
||||
<a href="<?= $scheduleDowntimeLink ?>" data-base-target="_self">
|
||||
<?= $this->icon('plug') ?>
|
||||
<?= $this->translate('Schedule downtime') ?>
|
||||
</a>
|
||||
|
|
Loading…
Reference in New Issue