for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @license LGPLv3, http://www.gnu.org/copyleft/lgpl.html
* @copyright Aimeos (aimeos.org), 2015-2016
* @package flow
* @subpackage Controller
*/
namespace Aimeos\Shop\Controller;
use Neos\Flow\Annotations as Flow;
* Aimeos locale controller.
class LocaleController extends AbstractController
{
* Returns the output of the locale select component
*
* @return string Rendered HTML for the body
public function selectComponentAction()
$this->view->assign( 'output', $this->getOutput( 'locale/select' ) );
}