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