2014-10-02 11:11:00 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Icinga\Web\Wizard;
|
|
|
|
|
|
2015-10-01 08:13:45 -04:00
|
|
|
$form->getElement(Wizard::BTN_NEXT)->setAttrib(
|
|
|
|
|
'class',
|
|
|
|
|
$form->getElement(Wizard::BTN_NEXT)->getAttrib('class') . ' finish'
|
|
|
|
|
);
|
2015-08-28 04:49:26 -04:00
|
|
|
|
2014-10-02 11:11:00 -04:00
|
|
|
?>
|
2014-10-27 09:11:24 -04:00
|
|
|
<p><?= sprintf(
|
2015-01-20 11:39:47 -05:00
|
|
|
$this->translate(
|
2015-01-21 10:52:38 -05:00
|
|
|
'You\'ve configured %1$s successfully. You can review the changes supposed to be made before setting it up.'
|
2014-11-10 04:30:52 -05:00
|
|
|
. ' Make sure that everything is correct (Feel free to navigate back to make any corrections!) so'
|
|
|
|
|
. ' that you can start using %1$s right after it has successfully been set up.'
|
2014-10-27 09:11:24 -04:00
|
|
|
),
|
|
|
|
|
$form->getSubjectTitle()
|
2014-10-02 11:11:00 -04:00
|
|
|
); ?></p>
|
|
|
|
|
<div class="summary">
|
2014-10-23 09:15:59 -04:00
|
|
|
<?php foreach ($form->getSummary() as $pageHtml): ?>
|
2014-10-28 10:12:40 -04:00
|
|
|
<?php if ($pageHtml): ?>
|
2014-10-16 08:52:26 -04:00
|
|
|
<div class="page">
|
2014-10-23 09:15:59 -04:00
|
|
|
<?= $pageHtml; ?>
|
2014-10-16 08:52:26 -04:00
|
|
|
</div>
|
2014-10-28 10:12:40 -04:00
|
|
|
<?php endif ?>
|
2014-10-23 09:15:59 -04:00
|
|
|
<?php endforeach ?>
|
|
|
|
|
</div>
|
2015-08-21 04:35:10 -04:00
|
|
|
<form
|
2023-01-11 09:30:03 -05:00
|
|
|
id="<?= $this->escape($form->getName()); ?>"
|
|
|
|
|
name="<?= $this->escape($form->getName()); ?>"
|
|
|
|
|
enctype="<?= $this->escape($form->getEncType()); ?>"
|
|
|
|
|
method="<?= $this->escape($form->getMethod()); ?>"
|
|
|
|
|
action="<?= $this->escape($form->getAction()); ?>"
|
2015-08-21 04:35:10 -04:00
|
|
|
data-progress-element="<?= Wizard::PROGRESS_ELEMENT; ?>"
|
|
|
|
|
class="summary"
|
|
|
|
|
>
|
2014-10-23 09:15:59 -04:00
|
|
|
<?= $form->getElement($form->getTokenElementName()); ?>
|
|
|
|
|
<?= $form->getElement($form->getUidElementName()); ?>
|
2015-08-28 04:49:26 -04:00
|
|
|
<?= $form->getDisplayGroup('buttons'); ?>
|
2014-10-23 09:15:59 -04:00
|
|
|
</form>
|