PMA\libraries\ThemeManager::setThemesPath PHP Метод

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

sets path to folder containing the themes
public setThemesPath ( string $path ) : boolean
$path string path to themes folder
Результат boolean success
    public function setThemesPath($path)
    {
        if (!$this->_checkThemeFolder($path)) {
            return false;
        }
        $this->_themes_path = trim($path);
        return true;
    }