A Qcodo based CMS/ecommerce framework
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.
 
 
 
 
 

15 lines
447 B

<?php
class QPanel extends QBlockControl {
///////////////////////////
// Private Member Variables
///////////////////////////
protected $strTagName = 'div';
protected $strDefaultDisplayStyle = QDisplayStyle::Block;
//this is a bug fix - strDefaultDisplayStyle does not exist ..
protected $strDisplayStyle = QDisplayStyle::Block;
protected $blnIsBlockElement = true;
protected $blnHtmlEntities = false;
}
?>