summaryrefslogtreecommitdiff
path: root/modules/forge/libraries/Form_Textarea.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forge/libraries/Form_Textarea.php')
-rw-r--r--modules/forge/libraries/Form_Textarea.php31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/forge/libraries/Form_Textarea.php b/modules/forge/libraries/Form_Textarea.php
deleted file mode 100644
index f6d28fd0..00000000
--- a/modules/forge/libraries/Form_Textarea.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/**
- * FORGE textarea input library.
- *
- * $Id$
- *
- * @package Forge
- * @author Kohana Team
- * @copyright (c) 2007-2008 Kohana Team
- * @license http://kohanaphp.com/license.html
- */
-class Form_Textarea_Core extends Form_Input {
-
- protected $data = array
- (
- 'class' => 'textarea',
- 'value' => '',
- );
-
- protected $protect = array('type');
-
- protected function html_element()
- {
- $data = $this->data;
-
- unset($data['label']);
-
- return form::textarea($data);
- }
-
-} // End Form Textarea \ No newline at end of file