blob: 4dcbcc2784a918fd75b67301ee2edca97a13d817 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* FORGE hidden input library.
*
* $Id$
*
* @package Forge
* @author Kohana Team
* @copyright (c) 2007-2008 Kohana Team
* @license http://kohanaphp.com/license.html
*/
class Form_Hidden_Core extends Form_Input {
protected $data = array
(
'name' => '',
'value' => '',
);
public function render()
{
return form::hidden($this->data['name'], $this->data['value']);
}
} // End Form Hidden
|