Ip\View::getThemeOption PHP 메소드

getThemeOption() 공개 메소드

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
리턴 string
    public function getThemeOption($name, $default = null)
    {
        $themeService = \Ip\Internal\Design\Service::instance();
        return $themeService->getThemeOption($name, $default);
    }