mirror of
				https://github.com/alchemy-fr/Phraseanet.git
				synced 2025-10-26 19:33:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /*
 | |
|  * This file is part of Phraseanet
 | |
|  *
 | |
|  * (c) 2005-2016 Alchemy
 | |
|  *
 | |
|  * For the full copyright and license information, please view the LICENSE
 | |
|  * file that was distributed with this source code.
 | |
|  */
 | |
| namespace Alchemy\Phrasea\Controller\Root;
 | |
| 
 | |
| use Alchemy\Phrasea\Controller\Controller;
 | |
| use Symfony\Component\HttpFoundation\Cookie;
 | |
| use Symfony\Component\HttpFoundation\Response;
 | |
| 
 | |
| class RootController extends Controller
 | |
| {
 | |
|     public function getRobots()
 | |
|     {
 | |
|         if ($this->getConf()->get(['registry', 'general', 'allow-indexation']) === true) {
 | |
|             $buffer = "User-Agent: *\n" . "Allow: /\n";
 | |
|         } else {
 | |
|             $buffer = "User-Agent: *\n" . "Disallow: /\n";
 | |
|         }
 | |
| 
 | |
|         return new Response($buffer, 200, ['Content-Type' => 'text/plain']);
 | |
|     }
 | |
| 
 | |
|     public function getRoot()
 | |
|     {
 | |
|         return $this->app->redirectPath('homepage');
 | |
|     }
 | |
| 
 | |
|     public function setLocale($locale)
 | |
|     {
 | |
|         $response = $this->app->redirectPath('root');
 | |
|         $response->headers->setCookie(new Cookie('locale', $locale));
 | |
| 
 | |
|         return $response;
 | |
|     }
 | |
| 
 | |
|     public function getAvailableLanguages()
 | |
|     {
 | |
|         return $this->app->json($this->app['locales.available']);
 | |
|     }
 | |
| }
 | 
