summaryrefslogtreecommitdiff
path: root/modules/forge/libraries/Form_Hidden.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-15 09:21:44 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-15 09:21:44 +0000
commit4fe895a2c473cd22e4741552186fe2be48503167 (patch)
tree37ed17128d54142938f38f06b6e6708883ddfd06 /modules/forge/libraries/Form_Hidden.php
parent3b35e8b91ce94c292b46a296d034542ac5f0f6da (diff)
Delete forge in preparation to refresh it from vendors/forge/modified
Diffstat (limited to 'modules/forge/libraries/Form_Hidden.php')
-rw-r--r--modules/forge/libraries/Form_Hidden.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/forge/libraries/Form_Hidden.php b/modules/forge/libraries/Form_Hidden.php
deleted file mode 100644
index 4dcbcc27..00000000
--- a/modules/forge/libraries/Form_Hidden.php
+++ /dev/null
@@ -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 \ No newline at end of file