1: <?php
2: /**
3: * QLabel class is used to create text on the client side.
4: * By default it will not accept raw HTML for text.
5: * Set Htmlentities to false to enable that behavior
6: * @package Controls
7: */
8: class QLabel extends QBlockControl {
9: ///////////////////////////
10: // Protected Member Variables
11: ///////////////////////////
12: /** @var string HTML tag to be used when rendering this control */
13: protected $strTagName = 'span';
14: /** @var bool Should htmlentities be run on the contents of this control? */
15: protected $blnHtmlEntities = true;
16:
17: }