icingaweb2/library/Icinga/Web/Form/Element/Time.php

22 lines
375 B
PHP
Raw Permalink Normal View History

2017-07-03 09:03:26 -04:00
<?php
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
2017-07-03 09:03:26 -04:00
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';
}