pnlTitle = new QPanel($this->objParentObject, $strControlId . 'Title'); $this->pnlTitle->Name = QApplication::Translate('Title'); $this->pnlTitle->Text = $this->objModule->Title; return $this->pnlTitle; } /** * Create and setup QPanel pnlDescription * @param string $strControlId optional ControlId to use * @return QPanel */ public function pnlDescription_Create($strControlId = null) { $this->pnlDescription = new QPanel($this->objParentObject, $strControlId . 'Description'); $this->pnlDescription->Name = QApplication::Translate('Description'); $this->pnlDescription->Text = $this->objModule->Description; return $this->pnlDescription; } } ?>