reorder-command-transports.phtml (icingaweb2-2.11.3) | : | reorder-command-transports.phtml (icingaweb2-2.11.4) | ||
---|---|---|---|---|
<?php | <?php | |||
/** @var \Icinga\Web\View $this */ | /** @var \Icinga\Web\View $this */ | |||
/** @var \Icinga\Module\Monitoring\Forms\Config\TransportReorderForm $form */ | /** @var \Icinga\Module\Monitoring\Forms\Config\TransportReorderForm $form */ | |||
?> | ?> | |||
<form id="<?= | <form id="<?= | |||
$form->getId() | $this->escape($form->getId()) | |||
?>" name="<?= | ?>" name="<?= | |||
$form->getName() | $this->escape($form->getName()) | |||
?>" enctype="<?= | ?>" enctype="<?= | |||
$form->getEncType() | $this->escape($form->getEncType()) | |||
?>" method="<?= | ?>" method="<?= | |||
$form->getMethod() | $this->escape($form->getMethod()) | |||
?>" action="<?= | ?>" action="<?= | |||
$form->getAction() | $this->escape($form->getAction()) | |||
?>"> | ?>"> | |||
<table class="table-row-selectable common-table" data-base-target="_next"> | <table class="table-row-selectable common-table" data-base-target="_next"> | |||
<thead> | <thead> | |||
<tr> | <tr> | |||
<th><?= $this->translate('Transport') ?></th> | <th><?= $this->translate('Transport') ?></th> | |||
<th></th> | <th></th> | |||
<th></th> | <th></th> | |||
</tr> | </tr> | |||
</thead> | </thead> | |||
<tbody> | <tbody> | |||
End of changes. 5 change blocks. | ||||
5 lines changed or deleted | 5 lines changed or added |