Files
gallery3/modules/forge/libraries/Form_Textarea.php
Bharat Mediratta abeec7c7b8 Merged /gallery3/vendor/forge/modified:r20843
Added preamble to all Forge files.
2009-05-18 03:28:46 +00:00

31 lines
561 B
PHP

<?php defined("SYSPATH") or die("No direct script access.");
/**
* 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