Frozennode\Administrator\AdminController::switchLocale PHP 메소드

switchLocale() 공개 메소드

POST method for switching a user's locale.
public switchLocale ( string $locale ) : JSON
$locale string
리턴 JSON
    public function switchLocale($locale)
    {
        if (in_array($locale, config('administrator.locales'))) {
            $this->session->put('administrator_locale', $locale);
        }
        return redirect()->back();
    }