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.

14 lines
447 B

13 years ago
  1. <?php
  2. class QPanel extends QBlockControl {
  3. ///////////////////////////
  4. // Private Member Variables
  5. ///////////////////////////
  6. protected $strTagName = 'div';
  7. protected $strDefaultDisplayStyle = QDisplayStyle::Block;
  8. //this is a bug fix - strDefaultDisplayStyle does not exist ..
  9. protected $strDisplayStyle = QDisplayStyle::Block;
  10. protected $blnIsBlockElement = true;
  11. protected $blnHtmlEntities = false;
  12. }
  13. ?>