mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
348 B
PHP
19 lines
348 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App;
|
|
use Illuminate\Http\Request;
|
|
|
|
class SiteController extends Controller
|
|
{
|
|
public function changeLocale(Request $request, $locale)
|
|
{
|
|
if(!App::isLocale($locale)) {
|
|
return redirect()->back();
|
|
}
|
|
App::setLocale($locale);
|
|
return redirect()->back();
|
|
}
|
|
}
|