Ip\View::getThemeOption PHP Method

getThemeOption() public method

Get theme option. Options can be viewed or set using UI via Theme options dialog box.
public getThemeOption ( $name, null $default = null ) : string
$name
$default null
return string
    public function getThemeOption($name, $default = null)
    {
        $themeService = \Ip\Internal\Design\Service::instance();
        return $themeService->getThemeOption($name, $default);
    }