Prado\Web\UI\TPage::getTheme PHP Method

getTheme() public method

public getTheme ( ) : TTheme
return TTheme the theme used for the page. Defaults to null.
    public function getTheme()
    {
        if (is_string($this->_theme)) {
            $this->_theme = $this->getService()->getThemeManager()->getTheme($this->_theme);
        }
        return $this->_theme;
    }