1: <?php
2: /**
3: * The QPanel Class is defined here.
4: * QPanel class can be used to create composite controls which are to be rendered as blocks (not inline)
5: * @package Controls
6: */
7: class QPanel extends QBlockControl {
8: ///////////////////////////
9: // Protected Member Variables
10: ///////////////////////////
11: /** @var string HTML tag to the used for the Block Control */
12: protected $strTagName = 'div';
13: /** @var string Default display style for the control. See QDisplayStyle class for available list */
14: protected $strDefaultDisplayStyle = QDisplayStyle::Block;
15: /** @var bool Is the control a block element? */
16: protected $blnIsBlockElement = true;
17: /** @var bool Use htmlentities for the control? */
18: protected $blnHtmlEntities = false;
19: }