mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
10 lines
188 B
PHP
10 lines
188 B
PHP
<?php
|
|
/* Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
|
|
|
|
namespace Icinga\Web\Form\Element;
|
|
|
|
class Checkbox extends \Zend_Form_Element_Checkbox
|
|
{
|
|
public $helper = 'icingaCheckbox';
|
|
}
|