mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-28 02:20:10 +02:00
This is a generic form not necessarily being used just for configuration purposes. refs #5525
23 lines
392 B
PHP
23 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'));
|
|
}
|
|
}
|