00001 <?php 00002 00007 class XFormsInputControl extends XFormsControl 00008 { 00009 00017 public function generateTK() { 00018 00019 $id = $this->getControlId(); 00020 $value = $this->getFirstValue(); 00021 00022 $box = new TKNullBox(); 00023 $i = new TKFormInput('text', $id, $value); 00024 $i->class = array('input', 'textInput'); 00025 $box->add($i); 00026 return $box; 00027 } 00028 00029 } 00030 00031 ?>
1.5.6