A QCodo powered CMS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
770 B

/**
* Create and setup QLabel <%= $strControlId %>
* @param string $strControlId optional ControlId to use
* @return QLabel
*/
public function <%= $strControlId %>_Create($strControlId = null) {
$this-><%= $strControlId %> = new QLabel($this->objParentObject, $strControlId);
$this-><%= $strControlId %>->Name = QApplication::Translate('<%= QConvertNotation::WordsFromCamelCase($objColumn->PropertyName) %>');
if ($this->blnEditMode)
$this-><%= $strControlId %>->Text = $this-><%= $strObjectName %>-><%= $objColumn->PropertyName %>;
else
$this-><%= $strControlId %>->Text = 'N/A';
return $this-><%= $strControlId %>;
}