00001 <?php 00002 00007 class XFormsTitleControl extends XFormsControl 00008 { 00009 00017 public function generateTK() { 00018 00019 $id = $this->getControlId(); 00020 $caption = $this->getGroup()->getLabel(); 00021 00022 $box = new TKVBox(); 00023 $box->add(new TKLabel('This is my title')); 00024 $box->add(new TKLabel($caption)); 00025 return $box; 00026 } 00027 00028 } 00029 00030 ?>
1.5.6