This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/modules/forge/libraries/Form_Hidden.php

25 lines
538 B
PHP

<?php defined("SYSPATH") or die("No direct script access.");
/**
* FORGE hidden input library.
*
* $Id: Form_Hidden.php 3326 2008-08-09 21:24:30Z Shadowhand $
*
* @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