00001 <?php
00005 class XFormsTextGroup extends XFormsGroup
00006 {
00014 public function generateTK() {
00015 # Create a VBox to hold title + description
00016 $b = new TKVBox();
00017 $b->class = array('XFormsTitle');
00018
00019 # Add the title label
00020 $label = new TKLabel($this->getLabel());
00021 $label->class = array('titleTitle');
00022 $b->add($label);
00023
00024 # Add the description text under the title.
00025 $cs = $this->getControls();
00026 foreach ($cs as $c) {
00027 $tkD = $c->generateDescriptionTK();
00028 if ($tkD != null) $b->add($tkD);
00029 }
00030
00031 return $b;
00032 }
00033 }
00034
00035 ?>