00001 <?php 00002 00007 class XFormsUploadControl 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('file', $id, $value); 00024 $box->add($i); 00025 return $box; 00026 } 00027 00028 } 00029 00030 ?>
1.5.6