blob: 4b76a33c5e4040e5a108de17e291083bd65f429d (
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 time input control
*/
class Time extends FormElement
{
/**
* Form view helper to use for rendering
*
* @var string
*/
public $helper = 'formTime';
}
|