Prado\Web\UI\TControl::getEnableTheming PHP Method

getEnableTheming() public method

public getEnableTheming ( ) : boolean
return boolean whether theming is enabled for this control. The theming is enabled if the control and all its parents have it enabled.
    public function getEnableTheming()
    {
        if ($this->_flags & self::IS_DISABLE_THEMING) {
            return false;
        } else {
            return $this->_parent ? $this->_parent->getEnableTheming() : true;
        }
    }
TControl