blob: d4499a0389a4fad8ce18864470dd08f7787efc72 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
/* Icinga Web 2 | (c) 2019 Icinga GmbH | GPLv2+ */
namespace Icinga\Web\Form\Element;
class Checkbox extends \Zend_Form_Element_Checkbox
{
public $helper = 'icingaCheckbox';
}
|