diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 09:22:32 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-12-15 09:22:32 +0000 |
commit | 93977e579cca9a9d0df28099e1fb7596bcc1c825 (patch) | |
tree | 6968d4a9f4a3cadb332e23e8e807748eccd25deb /modules/forge/libraries/Form_Radio.php | |
parent | 4fe895a2c473cd22e4741552186fe2be48503167 (diff) |
Refresh of Forge r168 from vendor/forge/modified
Diffstat (limited to 'modules/forge/libraries/Form_Radio.php')
-rw-r--r-- | modules/forge/libraries/Form_Radio.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/forge/libraries/Form_Radio.php b/modules/forge/libraries/Form_Radio.php new file mode 100644 index 00000000..f88632f2 --- /dev/null +++ b/modules/forge/libraries/Form_Radio.php @@ -0,0 +1,22 @@ +<?php +/** + * FORGE radio input library. + * + * $Id$ + * + * @package Forge + * @author Kohana Team + * @copyright (c) 2007-2008 Kohana Team + * @license http://kohanaphp.com/license.html + */ +class Form_Radio_Core extends Form_Checkbox { + + protected $data = array + ( + 'type' => 'radio', + 'class' => 'radio', + 'value' => '1', + 'checked' => FALSE, + ); + +} // End Form_Radio
\ No newline at end of file |