1 <?php
2 /**
3 * HiddenInput.php
4 *
5 * @author Elvyrra SAS
6 * @license http://rem.mit-license.org/ MIT
7 */
8
9 namespace Hawk;
10
11 /**
12 * This class describes hidden inputs behavior
13 *
14 * @package Form\Input
15 */
16 class HiddenInput extends FormInput{
17 const TYPE = "hidden";
18
19 /**
20 * Is the input hidden
21 */
22 public $hidden = true;
23 }
24