Delete forge in preparation to refresh it from vendors/forge/modified

This commit is contained in:
Bharat Mediratta
2008-12-15 09:21:44 +00:00
parent 3b35e8b91c
commit 4fe895a2c4
20 changed files with 0 additions and 2086 deletions

View File

@@ -1,25 +0,0 @@
<?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