mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-02-21 00:40:13 -05:00
9 lines
188 B
PHP
9 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';
|
|
}
|