summaryrefslogtreecommitdiffstats
path: root/application/views/scripts/integrations/index.phtml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:44:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:44:03 +0000
commite865f590071a1dab0734ccd7f3ab8f003cfb4cde (patch)
tree367fc1ef06004119d3941460a22c4f83b1ca4d7d /application/views/scripts/integrations/index.phtml
parentInitial commit. (diff)
downloadicingaweb2-module-generictts-upstream.tar.xz
icingaweb2-module-generictts-upstream.zip
Adding upstream version 2.1.0.upstream/2.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'application/views/scripts/integrations/index.phtml')
-rw-r--r--application/views/scripts/integrations/index.phtml56
1 files changed, 56 insertions, 0 deletions
diff --git a/application/views/scripts/integrations/index.phtml b/application/views/scripts/integrations/index.phtml
new file mode 100644
index 0000000..0f657ce
--- /dev/null
+++ b/application/views/scripts/integrations/index.phtml
@@ -0,0 +1,56 @@
+<div class="controls">
+ <?= $tabs ?>
+ <?= $this->qlink(
+ $this->translate('Integrate New Ticket System') ,
+ 'generictts/integrations/new',
+ null,
+ array(
+ 'class' => 'action-link',
+ 'data-base-target' => '_next',
+ 'icon' => 'plus',
+ 'title' => $this->translate('Integrate a new trouble ticket system')
+ )
+ ) ?>
+</div>
+<div class="content">
+<?php /** @var \Icinga\Application\Config $integrations */ if ($integrations->isEmpty()): ?>
+ <p><?= $this->translate('No ticket system has been integrated yet.') ?></p>
+<?php return; endif ?>
+ <table class="tts-integrations-table common-table table-row-selectable" data-base-target="_next">
+ <thead>
+ <tr>
+ <th><?= $this->translate('Name') ?></th>
+ <th><?= $this->translate('Pattern') ?></th>
+ <th><?= $this->translate('URL') ?></th>
+ </tr>
+ </thead>
+ <tbody>
+ <?php foreach ($integrations as $name => $integration): /** @var object $role */ ?>
+ <tr>
+ <td>
+ <?= $this->qlink(
+ $name,
+ 'generictts/integrations/update',
+ array('integration' => $name),
+ array('title' => sprintf($this->translate('Update integration %s'), $name))
+ ) ?>
+ </td>
+ <td><?= $this->escape($integration->pattern) ?></td>
+ <td><?= $this->escape($integration->url) ?></td>
+ <td class="icon-col text-right">
+ <?= $this->qlink(
+ '',
+ 'generictts/integrations/remove',
+ array('integration' => $name),
+ array(
+ 'class' => 'action-link',
+ 'icon' => 'cancel',
+ 'title' => sprintf($this->translate('Remove integration %s'), $name)
+ )
+ ) ?>
+ </td>
+ </tr>
+ <?php endforeach ?>
+ </tbody>
+ </table>
+</div>