mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-03 20:40:06 -05:00
This is a generic form not necessarily being used just for configuration purposes. refs #5525
22 lines
392 B
PHP
22 lines
392 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Form;
|
|
|
|
use Icinga\Web\Form;
|
|
|
|
/**
|
|
* Form for confirming removal of an object
|
|
*/
|
|
class ConfirmRemovalForm extends Form
|
|
{
|
|
/**
|
|
* Initalize this form
|
|
*/
|
|
public function init()
|
|
{
|
|
$this->setName('form_confirm_removal');
|
|
$this->setSubmitLabel(t('Confirm Removal'));
|
|
}
|
|
}
|