00001 <?php 00002 00007 class XFormsTextareaControl extends XFormsControl 00008 { 00009 00017 public function generateTK() { 00018 00019 $id = $this->getControlId(); 00020 $value = $this->getFirstValue(); 00021 00022 $i = new TKTextArea($id, $value, 4, 49); 00023 $i->class = array('textarea'); 00024 return $i; 00025 } 00026 00027 } 00028 00029 ?>
1.5.6