mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 21:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Pterodactyl - Panel
 | |
|  * Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
 | |
|  *
 | |
|  * This software is licensed under the terms of the MIT license.
 | |
|  * https://opensource.org/licenses/MIT
 | |
|  */
 | |
| 
 | |
| namespace Pterodactyl\Http\Middleware;
 | |
| 
 | |
| use Closure;
 | |
| use Illuminate\Http\Request;
 | |
| use Illuminate\Foundation\Application;
 | |
| use Illuminate\Contracts\Config\Repository;
 | |
| 
 | |
| class LanguageMiddleware
 | |
| {
 | |
|     /**
 | |
|      * @var \Illuminate\Foundation\Application
 | |
|      */
 | |
|     private $app;
 | |
| 
 | |
|     /**
 | |
|      * @var \Illuminate\Contracts\Config\Repository
 | |
|      */
 | |
|     private $config;
 | |
| 
 | |
|     /**
 | |
|      * LanguageMiddleware constructor.
 | |
|      *
 | |
|      * @param \Illuminate\Foundation\Application      $app
 | |
|      * @param \Illuminate\Contracts\Config\Repository $config
 | |
|      */
 | |
|     public function __construct(Application $app, Repository $config)
 | |
|     {
 | |
|         $this->app = $app;
 | |
|         $this->config = $config;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle an incoming request.
 | |
|      *
 | |
|      * @param \Illuminate\Http\Request $request
 | |
|      * @param \Closure                 $next
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function handle(Request $request, Closure $next)
 | |
|     {
 | |
|         $this->app->setLocale($this->config->get('app.locale', 'en'));
 | |
| 
 | |
|         return $next($request);
 | |
|     }
 | |
| }
 | 
