summaryrefslogtreecommitdiffstats
path: root/library/Icinga/Web/Form/Element/Date.php
blob: 8e0985c97d25eef0a87e20f63c73445ad9e342a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
/* Icinga Web 2 | (c) 2017 Icinga Development Team | GPLv2+ */

namespace Icinga\Web\Form\Element;

use Icinga\Web\Form\FormElement;

/**
 * A date input control
 */
class Date extends FormElement
{
    /**
     * Form view helper to use for rendering
     *
     * @var string
     */
    public $helper = 'formDate';
}