parent
8837fea7a4
commit
e542982de0
|
@ -1,4 +1,14 @@
|
||||||
<form id="<?= $form->getId() ?>" name="<?= $form->getName() ?>" enctype="<?= $form->getEncType() ?>" method="<?= $form->getMethod() ?>" action="<?= $form->getAction() ?>">
|
<form id="<?=
|
||||||
|
$this->escape($form->getId())
|
||||||
|
?>" name="<?=
|
||||||
|
$this->escape($form->getName())
|
||||||
|
?>" enctype="<?=
|
||||||
|
$this->escape($form->getEncType())
|
||||||
|
?>" method="<?=
|
||||||
|
$this->escape($form->getMethod())
|
||||||
|
?>" action="<?=
|
||||||
|
$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>
|
||||||
<th><?= $this->translate('Backend') ?></th>
|
<th><?= $this->translate('Backend') ?></th>
|
||||||
|
|
|
@ -3,15 +3,15 @@
|
||||||
/** @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>
|
||||||
|
|
|
@ -4,11 +4,11 @@ use Icinga\Web\Wizard;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<form
|
<form
|
||||||
id="<?= $form->getName(); ?>"
|
id="<?= $this->escape($form->getName()); ?>"
|
||||||
name="<?= $form->getName(); ?>"
|
name="<?= $this->escape($form->getName()); ?>"
|
||||||
enctype="<?= $form->getEncType(); ?>"
|
enctype="<?= $this->escape($form->getEncType()); ?>"
|
||||||
method="<?= $form->getMethod(); ?>"
|
method="<?= $this->escape($form->getMethod()); ?>"
|
||||||
action="<?= $form->getAction(); ?>"
|
action="<?= $this->escape($form->getAction()); ?>"
|
||||||
class="icinga-controls"
|
class="icinga-controls"
|
||||||
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
||||||
>
|
>
|
||||||
|
|
|
@ -14,11 +14,11 @@ if (! $form->getWizard()->getRequirements()->fulfilled()) {
|
||||||
<?= $wizard->getRequirements(); ?>
|
<?= $wizard->getRequirements(); ?>
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
<form
|
<form
|
||||||
id="<?= $form->getName(); ?>"
|
id="<?= $this->escape($form->getName()); ?>"
|
||||||
name="<?= $form->getName(); ?>"
|
name="<?= $this->escape($form->getName()); ?>"
|
||||||
enctype="<?= $form->getEncType(); ?>"
|
enctype="<?= $this->escape($form->getEncType()); ?>"
|
||||||
method="<?= $form->getMethod(); ?>"
|
method="<?= $this->escape($form->getMethod()); ?>"
|
||||||
action="<?= $form->getAction(); ?>"
|
action="<?= $this->escape($form->getAction()); ?>"
|
||||||
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
||||||
>
|
>
|
||||||
<?= $form->getElement($form->getTokenElementName()); ?>
|
<?= $form->getElement($form->getTokenElementName()); ?>
|
||||||
|
|
|
@ -26,11 +26,11 @@ $form->getElement(Wizard::BTN_NEXT)->setAttrib(
|
||||||
<?php endforeach ?>
|
<?php endforeach ?>
|
||||||
</div>
|
</div>
|
||||||
<form
|
<form
|
||||||
id="<?= $form->getName(); ?>"
|
id="<?= $this->escape($form->getName()); ?>"
|
||||||
name="<?= $form->getName(); ?>"
|
name="<?= $this->escape($form->getName()); ?>"
|
||||||
enctype="<?= $form->getEncType(); ?>"
|
enctype="<?= $this->escape($form->getEncType()); ?>"
|
||||||
method="<?= $form->getMethod(); ?>"
|
method="<?= $this->escape($form->getMethod()); ?>"
|
||||||
action="<?= $form->getAction(); ?>"
|
action="<?= $this->escape($form->getAction()); ?>"
|
||||||
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
||||||
class="summary"
|
class="summary"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue