Prado\Web\UI\TThemeManager::getTheme PHP Метод

getTheme() публичный Метод

public getTheme ( $name ) : TTheme
Результат TTheme the theme retrieved
    public function getTheme($name)
    {
        $themePath = $this->getBasePath() . DIRECTORY_SEPARATOR . $name;
        $themeUrl = rtrim($this->getBaseUrl(), '/') . '/' . $name;
        return Prado::createComponent($this->getThemeClass(), $themePath, $themeUrl);
    }