for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license GPLv3, http://www.gnu.org/copyleft/gpl.html
* @copyright Metaways Infosystems GmbH, 2014
* @copyright Aimeos (aimeos.org), 2014-2016
* @package TYPO3
*/
namespace Aimeos\Aimeos\Controller;
use Aimeos\Aimeos\Base;
* Aimeos locale controller.
*
class LocaleController extends AbstractController
{
* Processes requests and renders the locale selector.
public function selectAction()
$client = \Aimeos\Client\Html::create($this->context(), 'locale/select');
return $this->getClientOutput($client);
}