public function textarea($name, $value = '', $attributes = array()) { $attributes['name'] = $name; $attributes['id'] = $this->id($name, $attributes); if (!isset($attributes['rows'])) { $attributes['rows'] = 10; } if (!isset($attributes['cols'])) { $attributes['cols'] = 50; } return '<textarea' . $this->html->attributes($attributes) . '>' . $this->html->entities($value) . '</textarea>'; }