RainLab\Translate\Classes\Translator::loadLocaleFromSession PHP 메소드

loadLocaleFromSession() 공개 메소드

Looks at the session storage to find a locale.
public loadLocaleFromSession ( ) : boolean
리턴 boolean
    public function loadLocaleFromSession()
    {
        $locale = $this->getSessionLocale();
        if (!$locale) {
            return false;
        }
        $this->setLocale($locale);
        return true;
    }