1 <?php
2 /**
3 * RadioInput.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 the input[type='radio']
13 *
14 * @package Form\Input
15 */
16 class RadioInput extends FormInput{
17 const TYPE = "radio";
18
19 /**
20 * The layout of the inputs : 'horizontal' (default), 'vertical'
21 *
22 * @var string
23 */
24 public $layout = 'horizontal';
25
26 }
27