mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-04-13 09:25:41 -04:00
25 lines
428 B
PHP
25 lines
428 B
PHP
<?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
|