icingaweb2/application/forms/MigrationForm.php
2023-09-19 14:37:55 +02:00

26 lines
511 B
PHP

<?php
/* Icinga Web 2 | (c) 2023 Icinga GmbH | GPLv2+ */
namespace Icinga\Forms;
use ipl\Html\Form;
use ipl\Web\Common\CsrfCounterMeasure;
use ipl\Web\Common\FormUid;
class MigrationForm extends Form
{
use CsrfCounterMeasure;
use FormUid;
protected $defaultAttributes = [
'class' => ['icinga-form', 'migration-form', 'icinga-controls'],
'name' => 'migration-form'
];
protected function assemble(): void
{
$this->addHtml($this->createUidElement());
}
}