mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-08-14 06:18:10 +02:00
15 lines
227 B
PHP
15 lines
227 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Web\Form\Element;
|
|
|
|
/**
|
|
* Input control for booleans, gives y/n
|
|
*/
|
|
class YesNo extends OptionalYesNo
|
|
{
|
|
public $options = array(
|
|
'y' => 'Yes',
|
|
'n' => 'No',
|
|
);
|
|
}
|