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;
* Controller for ExtJS adminisration interface.
class AdminController extends \Neos\Flow\Mvc\Controller\ActionController
{
* Creates the initial HTML view for the admin interface.
public function indexAction()
$param = array(
'site' => 'default',
'resource' => 'dashboard',
'lang' => ( $this->request->hasArgument( 'lang' ) ? $this->request->getArgument( 'lang' ) : 'en' ),
);
$this->forward( 'search', 'jqadm', null, $param );
}