Refresh of Forge r168 from vendor/forge/modified

This commit is contained in:
Bharat Mediratta
2008-12-15 09:22:32 +00:00
parent 4fe895a2c4
commit 93977e579c
17 changed files with 2065 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<?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